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)' ;;