List of git commands with used:
git init
: initialize a repository in the local directorygit add filename
: instruct git to start tracking changes to filefilename
git commit -m 'message text' filename
: take a snapshot offilename
tagging it with messagemessage text
git status
: get current status of current repositorygit log
: visualize history of current repository
A git tutorial for beginners: the fisr six chapters of the Software Carpentry “Introduction to git” lecture