Merge pull request #117 from iamsudip/gitpatch2

Added cheats
This commit is contained in:
Chris Lane 2013-11-11 14:30:35 -08:00
commit b9c60a530a
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,9 @@ git add --all
# To commit staged changes
git commit -m "Your commit message"
# To edit previous commit message
git commit --amend
# To push to the tracked master branch:
git push origin master
@ -32,5 +35,6 @@ git checkout master # Checkout local master
git checkout -b new_branch # Create and checkout a new branch
git merge upstream/master # Merge remote into local repo
git show 83fb499 # Show what a commit did.
git diff branch_1 branch_2 # Check difference between branches
git log # Show all the commits
git status # Show the changes from last commit