GIT Cheat Sheet

From Tmplab
Revision as of 18:35, 16 October 2008 by Phil (talk | contribs) (Committing changes)

Basic commands

Creating

git init

Adding files

git add <filename>

or to commit all files in current directory:

git add .

Committing changes

git commit -m <message>

Seeing changes

git log


References