我需要创建一个没有父级的孤儿分支。我如何在 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,你的新(孤立)分支应该在那里。