GIT Cheat Sheet

From Tmplab
Revision as of 16:27, 1 October 2008 by Phil (talk | contribs) (Adding a file)

Basic commands

Creating

git init

Adding files

git add <filename>

or to commit all files in current directory:

git add .

Committing changes

git commit

Seeing changes

git log


References