Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的 fork 中压缩了 2 个提交,并且有一个请求请求在 github 中掌握。
第一次提交有一些格式更改。
在我的拉取请求中,它显示了我所做的格式更改,我不想被推送到主控。
有什么方法可以让我在不显示这些更改的情况下获得拉取请求。
创建一个新分支。
git checkout -b newbranch <commit-before-squashed-commits>
樱桃选择你想要的那个。如果您没有 ID,请查看git reflog以找到它们。
git reflog
git cherry-pick <commit-id-of-one-you-want>
然后推那个。