풀 요청이 here이고 "git rebase"를 수행 할 때 풀 요청을 작성하지 않은 커밋이 추가되었습니다. 리모콘 branch은 합병 중이므로 모든 커밋보다 앞서 있으므로 왜 PR에 들어갈 지 이해할 수 없습니다. 어떤 방법으로 이것을 취소 할 것인가, 또는 이것을 어떻게 막을 것인가?rebase를 수행하면 master 분기 커밋이 내 풀 (pull) 요청에 추가됩니다.
는 여기이 후
# Checkout local branch and apply changes
mkdir /home/yaroslavvb/tfimmediate_fresh
cd /home/yaroslavvb/tfimmediate_fresh
git clone https://github.com/yaroslavvb/tensorflow.git
cd tensorflow
git checkout tfimmediate_fresh
# do my modifications
git commit -m "Changes"
# Rebase against main branch
git remote add tfmain https://github.com/tensorflow/tensorflow.git
git fetch tfmain
git rebase tfmain/master
# fix conflicts
git add tensorflow/contrib/__init__.py
git rebase --continue
git pull
# fix conflicts again
git add tensorflow/contrib/__init__.py
git commit -m "Fix merge conflicts"
git push
git push -f
, 내 풀 요청을 리베이스, 당신은 당신의 git rebase --continue
후 git pull
을 한 동안 내가