summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-05-03 21:35:09 +0100
committerself <self@sateoki.xyz>2022-05-03 21:35:09 +0100
commit717092a3cb98646181a7955ba605f5f488e19efc (patch)
tree303fa6a25eb3957df82ccf51215201359bb34e63 /zsh
parentfa1098ee511ce1284c650cf4b99ca351b99b63e3 (diff)
Added gpr to print 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 6199c20..939beff 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -146,6 +146,11 @@ grr() { # Rename all remotes
git remote set-url github git@github.com:GeorgeAbbott/$1.git
git remote set-url gitlab git@gitlab.com:GeorgeAbbott/$1.git
}
+gpr() { # Print all remotes
+ git remote get-url origin
+ git remote get-url github
+ git remote get-url gitlab
+}
# misc
alias pkg-query="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"