I\'m not sure why I\'m unable to checkout a branch that I had worked on earlier. See the commands below (note: co is an alias for checkou
I got this error for a branch that was remote and had no local tracking branch. Even though I'm certain I've checked out remote branches via a simple
git checkout feature/foo
in the past, to get around this error I had to
git checkout -t -b feature/foo origin/feature/foo
I have no idea what I did to get myself into that situation either.