I have make pull request on git (with \"xcodeproj/project.pbxproj\" file - my fault), so can I delete this file from created Pull Request? Thanks..
To remove a file from your PR:
git rm path/toFile/youwantRemovedOffyour/PR git commit -a git push
To remove a directory from your PR:
git rm -r path/toFiles/youwantRemovedOffyour/PR git commit -a git push