从较旧的提交创建分支
可能的重复:
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就像:
...或者如果您想创建分支并通过一个命令切换到它,您可以执行以下操作:
This is as easy as:
... or if you want to create the branch and switch to it in one command, you can do: