Created
June 28, 2017 17:04
-
-
Save Gabelbombe/24e9d7ceef6bd84de46f35bd5391e53a to your computer and use it in GitHub Desktop.
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
[user] | |
email = [email protected] | |
name = ehime | |
[hub] | |
protocol = https | |
[core] | |
excludesfile = /opt/boxen/config/git/gitignore | |
whitespace = fix,-indent-with-non-tab,-indent-with-tab,trailing-space,cr-at-eol | |
[credential] | |
helper = !aws codecommit credential-helper $@ | |
UseHttpPath = true | |
[color] | |
ui = on | |
[core] | |
whitespace= fix,-indent-with-non-tab,-indent-with-tab,cr-at-eol | |
excludesfile = ~/.gitignore | |
[alias] | |
ui = update-index -q --refresh | |
mods = diff-index --name-only HEAD -- | |
ec = config --global -e | |
up = !git pull --rebase --prune $@ && git submodule update --init --recursive | |
df = !git diff --no-prefix && git diff --staged --no-prefix | |
clear = reset --hard | |
st = status | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat | |
lnc = log --pretty=format:"%h\\ %s\\ [%cn]" | |
co = checkout | |
con = checkout -b | |
cob = checkout -b | |
ci = commit -a | |
cim = commit -am | |
br = branch | |
ls = branch -a | |
cm = !git add -A && git commit -m | |
save = !git add -A && git commit -m 'SAVEPOINT' | |
wip = !git add -u && git commit -m "WIP" | |
undo = reset HEAD~1 --mixed | |
amend = commit -a --amend | |
wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard | |
bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f" | |
bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f" | |
history = branch -av | |
verbose = remote show origin | |
del = push origin : | |
[mergetool] | |
keepBackup = FALSE | |
[push] | |
default = upstream |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment