问题
When I do a Pull Request on GitHub (against master branch), can we ignore some file changes, like
- we have one file named 'fileA' in branch 'release', and we have the same file in 'master', but we do some changes in 'fileA' in branch 'release'
- when we do a Pull Request, is there any way we can ignore the changes in 'fileA', do not let that merge into 'master'.
回答1:
You can't ignore some files from a pull request selectively. Two workarounds for this can be -
First -
- Create a new branch from 'release'
- Replace the non-required files from 'master'
- Create pull request from this new branch
Second -
- Create a new branch from 'master'
- Put changes of required files from 'release'
- Create pull request from this new branch
Any of this method will work. Which will be easier depends upon how many files are to be included / excluded.
回答2:
Create branch with last commit you agree with:
git branch my-branch <sha>
git checkout my-branch
Select commits you want to pull request as patches:
git format-patch -10 <sha> --stdout > 0001-last-10-commits.patch
Apply patches:
git am < 0001-last-10-commits.patch
Your commits will be as they was. You can git push -u origin my-branch
immediately.
来源:https://stackoverflow.com/questions/28703140/pull-request-ignore-some-file-changes