So I try to change branches and I get:
error: The following untracked working tree files would be overwritten by checkout:
env/local/include
# many more files
env/local/lib
Please move or remove them before you can switch branches.
Aborting
So I try git rm -r --cached .
as suggested by stackoverflow.com/ignoring-a-directory-from-a-git-repo-after-its-been-added
and I get:
fatal: pathspec 'env/' did not match any files
I've tried various other paths. Are there files in there or not? And if so, how can I have git ignore them?
Thanks