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.

27 lines
598 B
Cheetah

[user]
email = {{ .git_email }}
name = {{ .git_alias }}
[pull]
rebase = false
[push]
default = current
[alias]
a = add
b = "!git checkout $(git branch | fzf)"
c = commit
cd = checkout develop
cl = clone
cm = checkout master
co = checkout
cp = cherry-pick
f = fetch
fo = fetch origin
m = merge
nb = checkout -b
p = push -u origin
pu = pull
s = status
track = "!for BRANCH in $(git branch -a | grep remotes | grep -v HEAD | grep -v master); do git branch --track \"${BRANCH#remotes/origin/}\" \"${BRANCH}\"; done"
[include]
path = ~/.gitconfig_custom.inc