aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Hovorka <[email protected]>2020-10-29 14:19:23 -0600
committerAlexis Hovorka <[email protected]>2020-10-29 14:19:23 -0600
commitbfdf2194d8c289308288cc49f887b838aba93fd5 (patch)
treedd6cb86266ec39c655743f85241a8ce82e7faa9f
parent4ca7dac5704a5b7e22ddb4952c38c09fbbcaa0bd (diff)
[feat] Add git rpush alias to simplify pushing new repos
-rw-r--r--base/gitconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/gitconfig b/base/gitconfig
index fb7a2df..ac04079 100644
--- a/base/gitconfig
+++ b/base/gitconfig
@@ -62,6 +62,7 @@
cloner = clone --recursive
rv = remote -v
ssh = "!ssh git.ahov.co"
+ rpush = "!f() { git remote add origin $*; git push -u origin main; }; f"
h = "!f() { git log $* | grep '^commit ' | cut -d' ' -f2; }; f" # Return a list of commit SHA1s
details = log -n1 -p --format=fuller # View the log and diff for a commit (previous if no SHA1 provided)