1
Fork 0

Add some git aliases, comment everything in config

This commit is contained in:
Joshua Goins 2022-05-17 11:52:29 -04:00
parent ed07543ecc
commit 854188fa23

View file

@ -1,7 +1,19 @@
[user] [user]
# personal info
email = josh@redstrate.com email = josh@redstrate.com
name = Joshua Goins name = Joshua Goins
signingkey = 0xD28B9141A3B3A73A signingkey = 0xD28B9141A3B3A73A
[core] [core]
# disable autocrlf
autocrlf = input autocrlf = input
[alias]
# pushes to all remotes (currently lacking a way to specify ref name, it will push EVERYTHING)
push-all = '!git remote | xargs -L1 git push --all'
# prettier log command
pretty-log = log --decorate --oneline --graph
[pull]
# use interactive rebase by default
rebase = interactive
[push]
# push relevant tags
followTags = true