Return to Snippet

Revision: 32202
at September 21, 2010 03:42 by MikeyLikesIt


Initial Code
# use git branch -r to see the names of the remote branches
git branch -r

# set up a local branch which tracks a remote branch.
git branch --track BRANCHNAME origin/REMOTEBRANCHNAME

# checkout the branch to update the codebase
git checkout BRANCHNAME

Initial URL


Initial Description


Initial Title
useful git snippets

Initial Tags


Initial Language
Bash