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.
我是 Github 的新手,最近分叉了某人的项目以进行我自己的更改。现在虽然我知道在新分支中创建每个新功能或错误修复是最佳实践。到目前为止,我只是在 Master 中进行编辑。
如何从我的 Master 创建一个新分支,然后再次用上游代码存储库替换我编辑的 master?
假设上游回购是origin......
origin
git branch some_feature git reset origin/master
现在您的分支是远程 master 分支所在的位置,并且您的代码在分支上some_feature。
some_feature