[git-users] "error: pathspec" When Working With Submodules

2009-12-02 Thread mudphone
I have a submodule in my master project, and I was working in a branch of the master project. In this master project branch, I did the following: - went into the submodule dir - checked out a topic branch - did a pull to get the latest on this topic branch - went back to the root dir of the maste

[git-users] Re: "error: pathspec" When Working With Submodules

2009-12-02 Thread mudphone
So, it turns out that this was a problem with a GREP_OPTION that I had set. I saw this post: http://osdir.com/ml/git/2009-05/msg02219.html Which, says to change from: export GREP_OPTIONS='--color=always' to: export GREP_OPTIONS='--color=auto' All is now right with the world. Kyle On Dec 2, 11