I have some files in conflict, despite .gitignore
should ignore them. If I try to update the solution I get Unmerged path
.
git status
brings the following:
On branch master
Your branch is up-to-date with 'origin/master'.
Unmerged paths:
(use "git reset HEAD <file>..." to unstage)
(use "git add/rm <file>..." as appropriate to mark resolution)
deleted by us: abc_Library.userprefs
deleted by us: abc_Library/bin/Debug/abc_Library.dll
deleted by us: abc_Library/bin/Debug/abc_Library.dll.mdb
deleted by us: abc_Library/obj/Debug/abc_Library.dll
no changes added to commit (use "git add" and/or "git commit -a")
I already defined the following .gitignore
[Bb]in/
[Oo]bj/
*.userprefs
.DS_Store
As I can remember I already have fixed the untracked files. Can it be that a team member doesn't have the gitignore
file and added the not needed files again? Or should I fix the untracked files again?
Edit:
Now I used
git rm --cached abc_Library/obj/Debug/abc_Library.dll
and the files don't appear as conflict anymore.