Created
October 20, 2012 15:22
Gist commands
This file contains 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
Reference: http://gitimmersion.com/ | |
# Pretty Git log | |
alias glog='git log --pretty="format:%C(yellow)%h %C(green)%s%C(blue)%d%C(white) - %ar - %an - %ad" --graph --date=short' | |
hist= log --pretty=format:\"%C(yellow)%h%Creset %ad | %C(green)%s%C(blue)%d%Creset [%an]\" --graph --date=short | |
# Reverting a Commit (safe in pushed to a remote branch) | |
git revert HEAD | |
# REMOVING COMMITS FROM A BRANCH | |
# The --hard parameter indicates that the working directory | |
# should be updated to be consistent with the new branch head. | |
git tag oops | |
git reset --hard <hash> | |
git hist --all # will still show the removed commits | |
git tag -d oops | |
git hist --all # Now the removed commits are gone. | |
# Information about origin | |
git remote show origin | |
# PULLING CHANGES | |
git pull | |
# is equivalent to the two steps: | |
git fetch | |
git merge origin/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment