Delete file from Pull Request on GitHub

后端 未结 7 1159
误落风尘
误落风尘 2021-02-06 23:00

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..

7条回答
  •  青春惊慌失措
    2021-02-06 23:26

    Another solution would be to

    • Locally rewrite your commit(s) by removing the file, using amend or rebase git features
    • Force push your branch toward your GitHub repository

    This will update the pull request by only displaying your refreshed commit(s).

提交回复
热议问题