Thibaut Démare
LITIS - Université du Havre
February 8th, 2016
Git has been designed by the man behind Linux to provide solutions to these problems.
git init
it is used to create a new repository.git clone an_existing_repository
it is used to create locally a repository from an existing but distant one.git status
It is used to list files which have changed.git add file_name
it is used to add a file to a future commit.git commit -m "your commit message"
it is used to confirm the modifications applied to your files.git pull
It is used to get the modifications published by other.git push
it is used to publish your own modifications and make them available to your co-workers.
thibaut.demare@univ-lehavre.fr