- I did check the answers on SO about "won't add files", tried in my case, they didn't work.
So, here is what I have.
Project, 2 branches, master
and 10_8
.
Currently I'm in master
.
When I try to make git checkout 10_8
I'm getting the error error: The following untracked working tree files would be overwritten by checkout, ....
, so I do git add -A .
and then git commit -m "message"
which actually do nothing because if I try to checkout the 10_8
branch I get the same error message.
The remote repository is located on BitBucker, and if I check the source
, the folder with files that won't be added has a different icon than regular folder, it looks like this for master
branch.
How to solve this issue?
Thx