Created
October 9, 2012 16:53
-
-
Save tstone/3860011 to your computer and use it in GitHub Desktop.
Git cheat sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download the repo the first time | |
git clone git://github.com..... | |
# Update the whole repo with everything | |
git pull | |
# Update from a specific branch | |
git pull origin release | |
# Bring in only 1 commit | |
git fetch | |
git cherry-pick 12345678 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment