summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.config/shell/aliasrc11
1 files changed, 6 insertions, 5 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index b1da14b..b6d2fe4 100755
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -45,14 +45,15 @@ alias \
# git
alias \
- gw="git worktree" \
- gc="git commit" \
ga="git add" \
- gm="git merge" \
+ gb="git branch -a" \
+ gc="git commit" \
+ gcl="git clone" \
gco="git checkout" \
gl="git log" \
- gp="git pull" \
- gb="git branch -a"
+ gm="git merge" \
+ gw="git worktree" \
+ gp="git pull"
# Pushing to multiple git repositories
alias gua="git remote | xargs -L1 git push --all"