Add some git aliases, comment everything in config
This commit is contained in:
parent
ed07543ecc
commit
854188fa23
1 changed files with 13 additions and 1 deletions
|
@ -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
|
Loading…
Add table
Reference in a new issue