summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-06-03 15:16:00 +0100
committerself <self@sateoki.xyz>2022-06-03 15:16:00 +0100
commitef45c112b3403ba4ec47f9c6480d46493d10f82f (patch)
tree66ca940b24835ff23170e5aa89f0a0ad8293d826 /zsh/.zshrc
parent92cfd210e4eeb3e1c547b7951acfc46cc8c459f4 (diff)
Replaced git.gabbott.xyz with git.gabbott.dev
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r--zsh/.zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 655acad..614a3df 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -155,12 +155,12 @@ 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 origin gitea@git.gabbott.dev:self/$1.git
git remote add github git@github.com:GeorgeAbbott/$1.git
git remote add gitlab git@gitlab.com:GeorgeAbbott/$1.git
}
grr() { # Rename all remotes
- git remote set-url origin gitea@git.gabbott.xyz:self/$1.git
+ git remote set-url origin gitea@git.gabbott.dev:self/$1.git
git remote set-url github git@github.com:GeorgeAbbott/$1.git
git remote set-url gitlab git@gitlab.com:GeorgeAbbott/$1.git
}
@@ -170,7 +170,7 @@ gpr() { # Print all remotes
git remote get-url gitlab
}
gcar() { # Git clone from origin url and then add in the rest of remotes
- git clone gitea@git.gabbott.xyz:self/$1.git
+ git clone gitea@git.gabbott.dev:self/$1.git
cd ./$1
gar $1
cd ..