dotfiles/config/.gitconfig

42 lines
1.0 KiB
INI
Raw Normal View History

2011-02-27 16:28:22 -05:00
[alias]
2024-07-29 11:48:49 -04:00
lg = "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
st = "status -s"
undo = "reset HEAD~1 --mixed"
smu = "submodule update --init --recursive"
2015-05-31 17:31:08 -04:00
ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"
2024-07-29 11:48:49 -04:00
up = "pull --rebase --autostash"
2019-04-27 08:49:52 -04:00
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 git branch -d"
2024-07-29 11:48:49 -04:00
2017-06-15 10:27:53 -04:00
[commit]
gpgsign = true
2024-07-29 11:48:49 -04:00
[credential "https://gist.github.com"]
helper = "/nix/store/isgmpcikb92pmj3ckpvjpbf45yk2n8y3-gh-2.53.0/bin/gh auth git-credential"
[credential "https://github.com"]
helper = "/nix/store/isgmpcikb92pmj3ckpvjpbf45yk2n8y3-gh-2.53.0/bin/gh auth git-credential"
[github]
user = "walkah"
[gpg]
format = "ssh"
[gpg "ssh"]
allowedSignersFile = "~/.ssh/allowed_signers"
2020-07-29 22:21:43 -04:00
[init]
2024-07-29 11:48:49 -04:00
defaultBranch = "main"
[pull]
rebase = true
[rebase]
autoStash = true
[user]
email = "walkah@walkah.net"
name = "James Walker"
signingkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOxgkaPcUYkMjk7SEBFrYpJ2mGK+8iPgLYwV+XpNp5Nl"