summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
authorotg <self@sateoki.xyz>2022-02-16 07:53:52 +0000
committerotg <self@sateoki.xyz>2022-02-16 07:53:52 +0000
commitf52b2431f82a9b2e0056e2a3026005e89ab83cf8 (patch)
treec1da122b031d6c799aea019b19eb270a4db26cf3 /zsh/.zshrc
parent2cd8348ac37093ef3489607117051f98f3f94288 (diff)
Added aliases for git commit -m and git add
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r--zsh/.zshrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 5bd86c1..373d1fc 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -81,6 +81,9 @@ alias gp="git push"
alias gpa="git push origin && git push github && git push gitlab"
alias gpl="git pull" # TODO: might be ambiguous with multiple remotes
alias gs="git status"
+alias ga="git add"
+alias gc="git commit"
+alias gcm="git commit -m"
# misc
alias pkg-query="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"