dotfiles/git/.gitconfig

54 lines
987 B
INI
Raw Permalink Normal View History

2013-06-01 23:19:43 +00:00
[user]
2013-07-30 13:55:38 +00:00
name = Frank Villaro-Dixon
email = frank@villaro-dixon.eu
2019-11-22 15:15:22 +00:00
signingKey = 34EB3167C1C803629833E5E40139000E88CF36E7
2013-06-01 23:19:43 +00:00
[color]
2013-07-30 13:55:38 +00:00
branch = auto
diff = auto
interactive = auto
status = auto
ui = auto
2013-06-01 23:19:43 +00:00
[alias]
2013-07-30 13:55:38 +00:00
st = status
ci = commit -s
2013-08-03 10:47:08 +00:00
commti = commit
2013-07-30 13:55:38 +00:00
co = checkout
br = branch
2014-04-10 13:49:27 +00:00
pu = push
2015-06-06 11:45:31 +00:00
psuh = push
2019-08-28 15:59:12 +00:00
psh = push
2015-10-14 12:51:33 +00:00
undo-commit = reset --soft HEAD^
2019-11-22 15:15:22 +00:00
tag = tag -s
open = "!f() { local url=$(git remote get-url origin | tr ':' '/' | sed -e 's|///|://|' -e 's|git@|https://|' -e 's/.git$//')/$1; echo opening $url; xdg-open $url; }; f"
open-ci = !git open pipelines
open-mr = !git open merge_requests
ap = add --patch
2013-06-01 23:19:43 +00:00
[core]
2013-07-30 13:55:38 +00:00
editor = vim
2015-10-14 12:51:33 +00:00
excludesfile = ~/.gitignore
2019-11-22 15:15:22 +00:00
hooksPath = .githooks
abbrev = 12
2013-06-01 23:19:43 +00:00
[merge]
2013-07-30 13:55:38 +00:00
tool = vimdiff
2013-06-01 23:19:43 +00:00
[diff "odf"]
2013-07-30 13:55:38 +00:00
textconv = odt2txt
2013-06-01 23:19:43 +00:00
[push]
2016-02-01 09:21:14 +00:00
default = current
2013-07-30 13:55:38 +00:00
2014-06-17 15:21:35 +00:00
[credential]
helper = cache
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[init]
defaultBranch = main