Archive

Archive for the ‘Version Control’ Category

Git Cheat Sheet…..

September 9, 2011 Leave a comment

Git Cheat Sheet
  Command Purpose
Staging git add To add a file to the index / staging area.
Staging git rm To remove a staged file.
Staging git mv To rename a staged file.
Repository git show To view an object in the object store given its SHA1 ID.
Repository git cat-tree To view the information of a SHA1 object id.
Repository git ls-tree To view the tree information of a tree.
Repository git commit To carry out a commit.
Branching gir branch To create / delete / get information about a branch.
Branching git show-branch To view the information about a set of branches.
Branching git merge-base To view the common commit between the two branches / commit points.
Lookup git rev-parse To get the reverse mapping from an abbreviated SHA1 object ID or a tag or a file to a full SHA1 ID.

The cheat sheet can be downloaded in PDF and MS Word formats.

Categories: Git

Egit User Guide….

August 30, 2011 Leave a comment

The Egit User Guide….

Categories: Git, Version Control

Difference between a Branch and a View…

August 30, 2011 Leave a comment

in Git…. vs other SCM’s.

Categories: Git, Version Control