summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-07-31 00:27:36 +0100
committerself <george@gabbott.dev>2022-07-31 00:27:36 +0100
commita87cb3efea6b382ff96f44480179c10afd6abd91 (patch)
tree7184b6fba35d3dc8bf1b20acc49aa3c744ac0220 /zsh/.zshrc
parent221f6dfe9fb42af3f2926716337c77f5bb17327d (diff)
Changed gitea url
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 18c435e..21b5159 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -188,12 +188,12 @@ abbrev-alias gcm="git commit -m"
abbrev-alias gf="git fetch"
abbrev-alias gcl="git clone"
git-add-remotes() { # Add remotes
- git remote add origin gitea@git.gabbott.dev:self/$1.git
+ git remote add origin gitea@git.gabbott.dev:george/$1.git
git remote add github git@github.com:GeorgeAbbott/$1.git
git remote add gitlab git@gitlab.com:GeorgeAbbott/$1.git
}
git-rename-remotes() { # Rename all remotes
- git remote set-url origin gitea@git.gabbott.dev:self/$1.git
+ git remote set-url origin gitea@git.gabbott.dev:george/$1.git
git remote set-url github git@github.com:GeorgeAbbott/$1.git
git remote set-url gitlab git@gitlab.com:GeorgeAbbott/$1.git
}
@@ -203,7 +203,7 @@ git-print-remotes() { # Print all remotes
git remote get-url gitlab
}
git-clone-add-remotes() { # Git clone from origin url and then add in the rest of remotes
- git clone gitea@git.gabbott.dev:self/$1.git
+ git clone gitea@git.gabbott.dev:george/$1.git
cd ./$1
gar $1
cd ..