5
如何隐藏我以前的提交?
我的情况如下git log: commit 111 <-- need to push it to the repository commit 222 <-- need to stash this one ... 如您所见,我只需要将最后(而不是先前)提交推送到存储库。 我该怎么做?git revert --soft commit_hash会帮助我吗?
74
git