Mercurial > dotfiles
diff .shell.d/50.vcs_functions.sh @ 195:e1a49db5c6ff
git-next-unmerged-file: also include "both modified" files
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 06 Apr 2010 15:07:46 -0500 |
parents | efa2bfc73d2d |
children | a563c21235ad |
line wrap: on
line diff
--- a/.shell.d/50.vcs_functions.sh +++ b/.shell.d/50.vcs_functions.sh @@ -204,7 +204,7 @@ function vcs_current_branch() { } function git_next_unmerged_file() { - git status | grep unmerged | head -n 1 | sed 's/.*: //' + git status | egrep '(unmerged|both modified)' | head -n 1 | sed 's/.*: //' } alias git-next-unmerged-file=git_next_unmerged_file