From 421a11069393a3f471188bfed074089c1b4d6bfe Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Mon, 29 Oct 2012 13:23:28 +0100 Subject: [PATCH] Adds Git tips --- git.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 git.md diff --git a/git.md b/git.md new file mode 100644 index 0000000..266ae6f --- /dev/null +++ b/git.md @@ -0,0 +1,29 @@ +# 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: + +```bash +$ git clone git@github.com:jlengrand&/projet.git +``` + +## Clone a project from another source: + +```bash +$ 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. + +```bash +$ 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.__ \ No newline at end of file