如何在smartgit中添加孤立分支

时间:2013-04-03 04:00:24

标签: git smartgit orphan

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

需要一些指导......

1 个答案:

答案 0 :(得分:2)

这是一个实例,如果SmartGit不支持GUI中的orphan选项,你也可以使用CLI(命令行界面)并输入一个快速:

git checkout --orphan newbranch

(如“In git, is there a simple way of introducing an unrelated branch to a repository?”)

提交至少一个文件(仍通过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,你的新(孤儿)分支应该在那里。