Last active
March 18, 2019 10:43
-
-
Save ajax13/244a764d7b64e342e44f277720aff1ff to your computer and use it in GitHub Desktop.
Global gitconfig
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
[color] | |
ui = true | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
[user] | |
email = XXX | |
name = yyy | |
[rerere] | |
enabled = true | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch -a -v --no-abbrev | |
lg = log --graph --pretty=tformat:'%Cred%h%Creset -%C(yellow)%d%Creset %s %C(bold green)(%an %cr)%Creset' | |
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat | |
# Commit grep by commit message/word | |
cg = "!sh -c '-git log --pretty=format:'%C(yellow)%h %Cblue%ad %Creset%s%Cgreen [%cn] %Cred%d' --decorate --date=short --grep=$1' -" | |
# Branch grep by commit id | |
bg = "!sh -c 'git branch -a --contains $1' -" | |
# Tag grep by tag number | |
tg = "!sh -c 'git describe --always --contains $1' -" | |
# Tag grep by souce code | |
sg = "!h -c 'git log --pretty=format:'%C(yellow)%h %Cblue%ad %Creset%s%Cgreen [%cn] %Cred%d' --decorate --date=short -S$1'" | |
# search already merged branches with master | |
bm = "!git branch --merged | grep -v '\\*'" | |
# Undo last `git push` on master | |
undopush = push -f origin HEAD^:master | |
undopush = push -f origin HEAD^:master | |
undosoftci = reset --soft HEAD~ | |
undomixedci = reset --mixed HEAD~ | |
undoci = reset --hard HEAD~/re: | |
[core] | |
editor = vim | |
excludesfile = ~/.gitignore | |
[push] | |
default = current |
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
# WebStorm | |
.idea/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git config -e
git config -l