From 854188fa2358e2120882e5c0f4351fe78cc2fa3e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 17 May 2022 11:52:29 -0400 Subject: [PATCH] Add some git aliases, comment everything in config --- private_dot_config/git/config | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/private_dot_config/git/config b/private_dot_config/git/config index 91ab4cf..7c60756 100644 --- a/private_dot_config/git/config +++ b/private_dot_config/git/config @@ -1,7 +1,19 @@ [user] + # personal info email = josh@redstrate.com name = Joshua Goins signingkey = 0xD28B9141A3B3A73A [core] + # disable autocrlf 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 \ No newline at end of file