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.
我已经在我的开发分支上工作了很长时间,以至于我的主人中没有任何东西是相关的。我想将 master 彻底擦干净,这样我就可以将 master 中的 dev 分支与干净的石板合并。
我怎么做?
假设这不是共享的,为什么不直接删除 master 并将您的分支重命名为 master
您可以通过执行以下操作使 master 成为 dev 的精确副本:
git checkout dev git push origin dev:master