From cba411e72de5f7627902b089ced76dafe9e887f1 Mon Sep 17 00:00:00 2001 From: William Hilton Date: Sat, 18 Jul 2015 20:28:52 -0400 Subject: [PATCH] Fix filtering on git status --- bin/get | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/get b/bin/get index 757e55a..ebf0f72 100755 --- a/bin/get +++ b/bin/get @@ -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 ..." to unstage)' \ -| grep -v '# (use "git add ..." to update what will be committed)' \ -| grep -v '# (use "git checkout -- ..." to discard changes in working directory)' \ -| grep -v '# (use "git add ..." 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 ..." to unstage)' \ +| grep -v '(use "git add ..." to update what will be committed)' \ +| grep -v '(use "git checkout -- ..." to discard changes in working directory)' \ +| grep -v '(use "git add ..." to include in what will be committed)' \ | grep -v 'nothing added to commit but untracked files present (use "git add" to track)' ;;