In one particular repo, when I run
git fetch
He does everything he has to do, but also reports:
* [new branch] Story/abc-123 -> origin/Story/abc-123
everytime.
if I run git branch -r | grep abc-123, it gives:
origin/story/abc-123
Note that in the output from the "History" sample, the title is capitalized, but in the -r branches it is not. The problem seems to be local. I do not have this problem if I create a new repo clone elsewhere, but I would prefer not to follow this road if I can avoid it.
Is there any way to stop this?
source
share