]> git.sev.monster Git - dotfiles.git/blame - etc/git/config
zshrc: add venv update alias
[dotfiles.git] / etc / git / config
CommitLineData
bfb37724 1[user]
62504b1f 2 email = git@sev.monster
3 name = sev
34422a75 4
a8ed94e2 5[alias]
3f48adb5 6 push-all = !git remote | xargs -n1 git push
7 submodules-pull = submodule foreach git pull origin master
1c9a18a3 8 pr = "!f() { git fetch -fu ${2:-origin} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"
e0e92e9b 9 tree = log --oneline --graph --branches --color
e226ac03 10 search = !git rev-list --all | xargs -I '{}' git ls-tree -r --full-name --format='%(objectmode) %(objecttype) %(objectname) {}%x09%(path)' '{}' | grep
390f6e67 11
d569f3f7 12[init]
13 defaultBranch = master
390f6e67 14[pull]
15 ff = only
16
17[include]
18 path = config.local
This page took 0.040118 seconds and 4 git commands to generate.