Skip to content

Instantly share code, notes, and snippets.

@duongphuhiep
Created July 14, 2016 09:37
Show Gist options
  • Save duongphuhiep/111797bfbffa0b74577272a1a149447c to your computer and use it in GitHub Desktop.
Save duongphuhiep/111797bfbffa0b74577272a1a149447c to your computer and use it in GitHub Desktop.
[user]
name = duong
email = duongphuhiep@gmail.com
[core]
autocrlf = input
[alias]
unstage = reset -q HEAD --
discard = checkout --
nevermind = !git reset --hard HEAD && git clean -d -f
uncommit = reset --mixed HEAD~
save = commit -m
resave = commit --amend
invert = revert
last = log -1 HEAD --format=format:"%Cred%H"
summary = status -u -s
graph = log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset• %<(75,trunc)%s (%cN, %ar) %Cred%d' --date-order
history = log -10 --format=format:'%Cgreen%h %Creset• %s (%cN, %ar)'
branchout = checkout -b
tags = tag
branches = branch -a
stashes = stash list
remotes = remote -v
prestage = diff -w --word-diff=color
precommit = diff --cached -w --word-diff=color --word-diff-regex='[^[:space:]<>]+'
move = mv
remove = rm
unmerged = branch --no-merged
unstash = stash pop
what = show -w
untrack = rm -r --cached
rewrite = rebase -i
amend = commit --amend
back = checkout "-"
contributors = shortlog -s -n
filetrail = git log --follow -p -w
mergetrail = log --ancestry-path --merges
unmerged = diff --name-only --diff-filter=U
[blame]
date = relative
[push]
default = current
[core]
editor = vim
precomposeunicode = true
excludesfile = ~/.gitignore_global
[credential]
helper = osxkeychain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment