从较旧的提交创建分支

发布于 2024-12-29 05:18:12 字数 477 浏览 0 评论 0原文

可能的重复:
使用 git 的先前提交的分支

我们可以从之前的提交?在下面的示例中,我可以从 f70c700 创建一个分支吗(此时我们已经位于 fabdd09):

$ git log --oneline --graph
*   fabdd09 Merge branch 'mybranch'
|\  
| * bd35011 Edit from mybranch
* | f70c700 Edit from master
|/  
* a2ff940 Initial submission.

谢谢。

Possible Duplicate:
branch from a previous commit using git

Can we create a branch from a previous commit? From the example below, can I create a branch from f70c700 (we're already at fabdd09 at this point):

$ git log --oneline --graph
*   fabdd09 Merge branch 'mybranch'
|\  
| * bd35011 Edit from mybranch
* | f70c700 Edit from master
|/  
* a2ff940 Initial submission.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

深白境迁sunset 2025-01-05 05:18:12

这就像:

git branch my-new-branch f70c700

...或者如果您想创建分支并通过一个命令切换到它,您可以执行以下操作:

git checkout -b my-new-branch f70c700

This is as easy as:

git branch my-new-branch f70c700

... or if you want to create the branch and switch to it in one command, you can do:

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