我已经做了一些本地更改,我想将其 git-commit 到共享服务器上的新分支 - 我该怎么做?
我已经从共享存储库中签出了代码,并对其做了一些工作。在此过程中,我一直将共享存储库中的更改合并到我的代码中。
我想将我的本地存储库推送到共享存储库上的新分支,以便其他人可以访问它们,同时不损坏共享存储库。
我该如何使用 Git 来做到这一点?
I've checked out code from a shared repository, and done some work on it. Along the way, I've been merging changes from the shared repository into my code.
I would like to push my local repo to a new branch on the shared repository, so others may access them, while at the same time not damaging the shared repo.
How would I do this using Git?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建并推送新功能分支,您可以:
git Branch BRANCH_NAME
git checkout BRANCH_NAME
git commit
根据需要git push origin BRANCH_NAME :BRANCH_NAME
最后一个命令将分支推送到您的共享存储库(我假设这是您的
origin
)。“成功的 Git 分支模型”是一个很好的教程。
Git Book 也有很多有用的信息。
To create and push a new feature branch, you can:
git branch BRANCH_NAME
git checkout BRANCH_NAME
git commit
as neededgit push origin BRANCH_NAME:BRANCH_NAME
The last command pushes the branch to your shared repository (I assume that is
origin
for you)."A successful Git branching model" is a good tutorial.
The Git Book also has a lot of good information.