diff options
author | otg <self@sateoki.xyz> | 2022-02-16 07:53:52 +0000 |
---|---|---|
committer | otg <self@sateoki.xyz> | 2022-02-16 07:53:52 +0000 |
commit | f52b2431f82a9b2e0056e2a3026005e89ab83cf8 (patch) | |
tree | c1da122b031d6c799aea019b19eb270a4db26cf3 /zsh | |
parent | 2cd8348ac37093ef3489607117051f98f3f94288 (diff) |
Added aliases for git commit -m and git add
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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)'" |