如何在smartgit中添加孤儿分支



我需要创建一个孤立分支,它没有父分支。我如何在Smartgit中做到这一点?

需要一些指导关于这个…

在这种情况下,如果SmartGit不支持GUI中的孤儿选项,您也可以使用CLI(命令行界面)并快速键入:

git checkout --orphan newbranch

(如"在git中,是否有一种简单的方法将不相关的分支引入存储库?")

提交至少一个文件(仍然通过GUI):

git add afile
git commit -m "a first commit in orphan branch"
# no push here, this is purely a local operation in your local repo

然后你回到SmartGit,你的新(孤儿)分支应该在那里。

相关内容

  • 没有找到相关文章

最新更新