diff options
author | otg <otg@sateoki.xyz> | 2022-04-12 08:42:49 +0100 |
---|---|---|
committer | otg <otg@sateoki.xyz> | 2022-04-12 08:42:49 +0100 |
commit | 34f392a9fc7c9a08ea92131a3ee78159000f6d58 (patch) | |
tree | a6bc2ef9a0cf5d9853850418eded3de7755e5e6e /zsh | |
parent | 131bdd3813c481f01df2af16bfda5553c37ec3ed (diff) |
Added gar function to add all remotes
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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)'" |