There are some files (like the break points list file -xcbkptlist) that keep on emerging when i commit my code to a branch in Xcode source control. I have tried to use git ignore in the following way:
I've Opened up TextEdit and add the following:
build/*
.DS_Store
*.xcuserdatad
*.xcbkptlist
I Saved the file in the root directory of my project and named it .gitignore
but the files still emerged.
All i needed to do make it work:
Another way is to remove them from git manually using:
git rm --cached <files>