You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.0 KiB
Cheetah

{{ if lookPath "git" -}}
[core]
editor = vim
excludesfile = ~/.config/git/ignore
quotepath = false
commitGraph = true
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
[user]
name = Buddy Sandidge
email = git@buddy.wtf
[alias]
br = branch
ci = commit
co = checkout
cp = cherry-pick
cw = diff --color-words
ccw = diff --color-words --cached
df = diff --ignore-space-change
dfw = diff --ignore-space-change --color-words
dfc = diff --ignore-space-change --cached
dfcw = diff --ignore-space-change --color-words --cached
dmw = diff --ignore-space-change --color-words master
dmn = diff master --name-only
st = status -sb
dm = diff master
dmcw = diff master --color-words
p = !git fetch --all
sup = submodule update
com = "!bash -c 'if [[ $(git rev-parse --verify main 2>/dev/null) ]] ; then git checkout main ; else git checkout master ; fi'"
cod = checkout develop
pod = push origin develop
file = show --pretty="format:" --name-only
glog = !git log --pretty=oneline | grep
dpull = !git svn fetch && git svn rebase
dcommit = svn dcommit
lg = log --graph --pretty=format:'%Cred%h%Creset %s%Cred%d%Creset %Cgreen(%cr by %cN)%Creset'
fix-last-commit = commit --amend
flc = fix-last-commit
rmbr = push origin --delete
# http://durdn.com/blog/2012/11/22/must-have-git-aliases-advanced-examples/
list = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ls = list
long-list = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
ll = long-list
list-date-stap = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
lds = list-date-stap
[push]
default = simple
[include]
path = ~/.config/git/config-git.buddy.wtf
path = ~/.config/git/config-git.xbudex.com
path = ~/.config/git/config-hellotech
[init]
defaultBranch = main
[receive]
advertisePushOptions = true
[gc]
writeCommitGraph = true
[fetch]
prune = true
{{- end }}