summaryrefslogtreecommitdiff
path: root/zsh/.zshrc-git
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-09-23 22:54:47 +0100
committerself <george@gabbott.dev>2022-09-23 22:54:47 +0100
commit7602e70ac45fb757acbc9c6e54af48828f6edbc9 (patch)
tree98524e05075c5d90a02efa949a0e9212cad178a5 /zsh/.zshrc-git
parenta8fce0f82a19527a25734c317d2ef9a490a200a7 (diff)
Split out zshrc into several files for cleanliness
Diffstat (limited to 'zsh/.zshrc-git')
-rw-r--r--zsh/.zshrc-git44
1 files changed, 44 insertions, 0 deletions
diff --git a/zsh/.zshrc-git b/zsh/.zshrc-git
new file mode 100644
index 0000000..2b7e2f6
--- /dev/null
+++ b/zsh/.zshrc-git
@@ -0,0 +1,44 @@
+git-add-remotes() { # Add remotes
+ 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: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
+}
+git-print-remotes() { # Print all remotes
+ git remote get-url origin
+ git remote get-url github
+ 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:george/$1.git
+ cd ./$1
+ gar $1
+ cd ..
+}
+git-update-all() { # Update all - recursively iterates through dir and runs git pull
+ # TODO implement
+}
+
+# Git aliases
+abbrev-alias gb="git branch"
+abbrev-alias gco="git checkout"
+abbrev-alias gcom="git checkout master"
+abbrev-alias gbd="git branch -d"
+abbrev-alias gp="git push"
+abbrev-alias gpa="git push origin && git push github && git push gitlab"
+abbrev-alias gpl="git pull"
+abbrev-alias gs="git status"
+abbrev-alias ga="git add"
+abbrev-alias gc="git commit"
+abbrev-alias gcm="git commit -m"
+abbrev-alias gf="git fetch"
+abbrev-alias gcl="git clone"
+abbrev-alias gar="git-add-remotes"
+abbrev-alias grr="git-rename-remotes"
+abbrev-alias gpr="git-print-remotes"
+abbrev-alias gcr="git-clone-add-remotes"
+abbrev-alias gua="git-update-all"