Jump to content

GIT Cheat Sheet: Difference between revisions

From tmplab
Phil (talk | contribs)
Phil (talk | contribs)
Line 1: Line 1:
= Basic commands =
= Basic commands (local) =
== Creating ==
== Creating ==
  git init
  git init

Revision as of 23:09, 1 March 2009

Basic commands (local)

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

Tagging

Adding a tag

git tag <tagname> -m "Comment about this tag"

Listing tags with comments

git tag -n

Seeing files inside repository

git ls-files
git ls-tree HEAD

References