gpt4 book ai didi

git - 我需要从过去的提交创建另一个分支

转载 作者:太空狗 更新时间:2023-10-29 14:38:04 25 4
gpt4 key购买 nike

我有一个如下所示的 Git 存储库:

enter image description here

我想从突出显示的提交创建一个新分支。 (这是一个很长的故事,但基本上我想在最新分支中解决问题的同时提交 iOS 应用程序)。我很确定这是可能的,只是不知道如何实现它...此外,我没有看到在 XCode 6.1 中使用“标签”的任何方式。它是否可用,只是没有记录?

最佳答案

你可以这样做(查看 git-checkout(1) Manual Page 文档)

git checkout -b|-B <new_branch> [<start point>]
  • <start_point> :

The name of a commit at which to start the new branch; see git-branch(1) for details. Defaults to HEAD.

  • -b <new_branch> :

Create a new branch named <new_branch> and start it at <start_point>.

  • -B <new_branch> :

Creates the branch <new_branch> and start it at <start_point>; if it already exists, then reset it to <start_point>.

关于git - 我需要从过去的提交创建另一个分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27747280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com