Files
Programming_Tips/git.md
2012-10-29 13:23:28 +01:00

720 B

Git and GitHub

INFO: Not really needed anymore . . .

Simple reminders to manage a project with Git and GitHub interface.

Clone a project from my personal GitHub account:

$ git clone git@github.com:jlengrand&/projet.git

Clone a project from another source:

$ git clone git://git.berlios.de/gpsd

Push modifications previously locally committed:

Should be performed once in a while to keep remote repository up to date. Do not forget to pull before pushing to avoid conflicts.

$ git push -origin master

More information can be found in git documentation

INFO : No need to create a folder first, as a main folder is automatically created for the project.