Skip to content

Instantly share code, notes, and snippets.

@ajax13
Last active March 18, 2019 10:43
Show Gist options
  • Save ajax13/244a764d7b64e342e44f277720aff1ff to your computer and use it in GitHub Desktop.
Save ajax13/244a764d7b64e342e44f277720aff1ff to your computer and use it in GitHub Desktop.
Global gitconfig
[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
# WebStorm
.idea/
@ajax13
Copy link
Author

ajax13 commented Apr 10, 2018

git config -e
git config -l

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment