summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorotg <otg@sateoki.xyz>2022-04-12 08:42:49 +0100
committerotg <otg@sateoki.xyz>2022-04-12 08:42:49 +0100
commit34f392a9fc7c9a08ea92131a3ee78159000f6d58 (patch)
treea6bc2ef9a0cf5d9853850418eded3de7755e5e6e /zsh
parent131bdd3813c481f01df2af16bfda5553c37ec3ed (diff)
Added gar function to add all remotes
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 9cc4c79..000ec2c 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -129,6 +129,11 @@ alias ga="git add"
alias gc="git commit"
alias gcm="git commit -m"
alias gf="git fetch"
+gar() { # Add remotes
+ git remote add origin gitea@git.gabbott.xyz:self/$1.git
+ git remote add github git@github.com:GeorgeAbbott/$1.git
+ git remote add gitlab git@gitlab.com:GeorgeAbbott/$1.git
+}
# misc
alias pkg-query="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"