diff options
author | Robby Russell <robby@planetargon.com> | 2014-11-19 12:41:12 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-11-19 12:41:12 -0800 |
commit | 0222e774978232c03795b0e858d105aba6ed8123 (patch) | |
tree | ac7bc9214d63e8e1d87b9ddcc13fce91b623add7 /lib | |
parent | 6a496d2ccabbb112c90b7669dc4e0c1839988fd1 (diff) | |
parent | a301f567e3a7ac2eb0b1f77d6ff97f50d63ba864 (diff) | |
download | zsh-0222e774978232c03795b0e858d105aba6ed8123.tar.gz zsh-0222e774978232c03795b0e858d105aba6ed8123.tar.bz2 zsh-0222e774978232c03795b0e858d105aba6ed8123.zip |
Merge pull request #3333 from mcornella/fix-git-hide-dirty
Switch back to oh-my-zsh.hide-dirty setting again
Diffstat (limited to 'lib')
-rw-r--r-- | lib/git.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git.zsh b/lib/git.zsh index aba095422..748520a6f 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -13,7 +13,7 @@ parse_git_dirty() { local STATUS='' local FLAGS FLAGS=('--porcelain') - if [[ "$(command git config --get oh-my-zsh.hide-status)" != "1" ]]; then + if [[ "$(command git config --get oh-my-zsh.hide-dirty)" != "1" ]]; then if [[ $POST_1_7_2_GIT -gt 0 ]]; then FLAGS+='--ignore-submodules=dirty' fi |