git-plugin: Add the [AMDCT]T case and TD case
This commit is contained in:
parent
c48fc95e0a
commit
cca5ba0b47
1 changed files with 3 additions and 3 deletions
|
@ -280,11 +280,11 @@ function git-info() {
|
|||
else
|
||||
# Count: added/deleted/modified/renamed/unmerged/untracked
|
||||
# T (type change) is undocumented, see https://raw.github.com/gitster/git/master/Documentation/RelNotes/1.7.8.2.txt
|
||||
[[ "$line" == ([AMDCT][M\ ]|[AMCT]D)\ * ]] && (( added++ ))
|
||||
[[ "$line" == [\ MARC]D\ * ]] && (( deleted++ ))
|
||||
[[ "$line" == ([ACDMT][\ MT]|[ACMT]D)\ * ]] && (( added++ ))
|
||||
[[ "$line" == [\ ACMRT]D\ * ]] && (( deleted++ ))
|
||||
[[ "$line" == ?[MT]\ * ]] && (( modified++ ))
|
||||
[[ "$line" == R?\ * ]] && (( renamed++ ))
|
||||
[[ "$line" == (?U|U?|AA|DD)\ * ]] && (( unmerged++ ))
|
||||
[[ "$line" == (AA|DD|U?|?U)\ * ]] && (( unmerged++ ))
|
||||
[[ "$line" == \?\?\ * ]] && (( untracked++ ))
|
||||
(( dirty++ ))
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue