3 [[http://git-scm.com/|Git]]: [[wp>Git_(software)|Git]] \\
4 Using [[https://github.com/|GitHub]]
6 ===== How to install Git =====
8 $ sudo apt-get install git-core
9 $ git config --global user.name user_name
10 $ git config --global user.email you@yourdomain.example.com
13 ===== How to create a SSH key =====
20 ===== How to create a project =====
28 $ git commit -m 'first commit'
29 $ git remote add origin git@github.com:user_name/project_name.git
30 $ git push origin master
33 ===== How to download a project =====
36 $ git clone http://github.com/user_name/project_name.git
40 ===== How to upload a project =====
45 $ git remote rm origin
46 $ git remote add origin git@github.com:user_name/project_name.git
52 $ git commit -a -m"description of the modifications"
53 $ git push --all origin
56 ===== How to update your version of a project =====
59 $ git pull origin master
63 ===== How to create a tag =====
69 ===== How to upload a tag =====
72 $ git push origin tag_name
78 $ git push --tags origin
81 ===== Git Cheat Sheet =====
83 [[http://cheat.errtheblog.com/s/git?utm_source=twitter&utm_medium=micro-blog&utm_campaign=twitter|Cheat Git]]