Skip to content

Instantly share code, notes, and snippets.

@unders
Created October 20, 2012 15:22
Gist commands
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