Wednesday, March 19, 2008

Some Handy Git Commands

# Grab some GIT stuff
git clone <git_reference>

# Possible GIT workflow. One person team. Master branch.
git pull <git_reference>
git add <filesystem object>
git commit -m 'Comment here' <filesystem object>
git push <git_reference>

# See what is different
git diff