Added option to skip git aliases definition

Fixes #947
This commit is contained in:
Eduardo San Martin Morote 2015-08-09 12:40:04 +02:00 committed by Kaleb Elwert
parent 27c2ccd8b9
commit c0049855c5
2 changed files with 145 additions and 139 deletions

View file

@ -29,6 +29,10 @@ This setting affects all aliases and functions that call `git-status`.
Aliases
-------
Aliases are enabled by default. You can disable them with:
zstyle ':prezto:module:git:alias' skip 'yes'
### Git
- `g` is short for `git`.

View file

@ -26,6 +26,7 @@ zstyle -s ':prezto:module:git:status:ignore' submodules '_git_status_ignore_subm
# Aliases
#
if ! zstyle -t ':prezto:module:git:alias' skip 'yes'; then
# Git
alias g='git'
@ -180,3 +181,4 @@ alias gwc='git clean -n'
alias gwC='git clean -f'
alias gwx='git rm -r'
alias gwX='git rm -rf'
fi