ZSH: git aliases

This commit is contained in:
Tobias Manske 2022-06-01 19:13:54 +02:00
parent 0cc7b30349
commit 0ca65731bd
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 202689A59D645C1C
1 changed files with 6 additions and 0 deletions

6
.zshrc
View File

@ -161,3 +161,9 @@ source =(kubectl completion zsh | sed 's/kubectl/k/g')
alias k="kubectl"
source =(helm completion zsh)
export KUBECONFIG="$HOME/.kube/config"
alias gl="git lg"
alias gs="git status"
alias gd="git diff"
alias gc="git commit"
alias gp="git push"