X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/29ea03fd22f080a2d12f895ced0e33ee07771587..0d89e0b38f04e0dc6fd0e2b51efa044bd3ccfc5a:/zsh/aliases/git.zsh diff --git a/zsh/aliases/git.zsh b/zsh/aliases/git.zsh index a51ec1e..dbf552e 100644 --- a/zsh/aliases/git.zsh +++ b/zsh/aliases/git.zsh @@ -19,6 +19,7 @@ alias gc='git commit -v' alias gcs='git commit -v --squash' alias gcf='git commit -v --fixup' alias gca='git commit -v -a' +alias gcaf='git commit -v -a --fixup' alias gco='git checkout' alias gcm='git checkout master' @@ -69,7 +70,7 @@ alias gpoat='git push origin --all && git push origin --tags' # cd into the top of the current repository # or submodule. -alias grt='cd $(git rev-parse --show-toplevel || echo ".")' +alias cdr='cd $(git rev-parse --show-toplevel || echo ".")' # Git and svn mix alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'