Fix filtering on git status

This commit is contained in:
William Hilton 2015-07-18 20:28:52 -04:00
parent e57d03dd99
commit cba411e72d

12
bin/get
View file

@ -108,12 +108,12 @@ ignore)
status)
# TODO: figure out how to git config --global color.status always automatically.
git status \
| grep -v '# On branch' \
| grep -v '# (use "git push" to publish your local commits)' \
| grep -v '# (use "git reset HEAD <file>..." to unstage)' \
| grep -v '# (use "git add <file>..." to update what will be committed)' \
| grep -v '# (use "git checkout -- <file>..." to discard changes in working directory)' \
| grep -v '# (use "git add <file>..." to include in what will be committed)' \
| grep -v 'On branch' \
| grep -v '(use "git push" to publish your local commits)' \
| grep -v '(use "git reset HEAD <file>..." to unstage)' \
| grep -v '(use "git add <file>..." to update what will be committed)' \
| grep -v '(use "git checkout -- <file>..." to discard changes in working directory)' \
| grep -v '(use "git add <file>..." to include in what will be committed)' \
| grep -v 'nothing added to commit but untracked files present (use "git add" to track)'
;;