我已经做了一些本地更改,我想将其 git-commit 到共享服务器上的新分支 - 我该怎么做?

发布于 2024-10-15 16:34:04 字数 144 浏览 8 评论 0原文

我已经从共享存储库中签出了代码,并对其做了一些工作。在此过程中,我一直将共享存储库中的更改合并到我的代码中。

我想将我的本地存储库推送到共享存储库上的新分支,以便其他人可以访问它们,同时不损坏共享存储库。

我该如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁以何悠 2024-10-22 16:34:04

要创建并推送新功能分支,您可以:

  1. git Branch BRANCH_NAME
  2. git checkout BRANCH_NAME
  3. git commit 根据需要
  4. git push origin BRANCH_NAME :BRANCH_NAME

最后一个命令将分支推送到您的共享存储库(我假设这是您的origin)。

成功的 Git 分支模型”是一个很好的教程。

Git Book 也有很多有用的信息。

To create and push a new feature branch, you can:

  1. git branch BRANCH_NAME
  2. git checkout BRANCH_NAME
  3. git commit as needed
  4. git 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文