0

我可以在“”分支中没有任何“提交”的情况下作为“分支”工作master

我在这个分支。

branch master

我想在分公司工作“ newStyle

问题

如果我从未首先提交,是否有可能(如果是,如何)切换到那个“ newStyle”分支master

4

1 回答 1

4

是的,它被称为孤儿分支

git checkout --orphan newStyle     # only in git1.7.2+
git rm -rf .                       # if you want to start from scratch
<do work>
git add your files
git commit -m 'Initial commit'

另请参阅本文中的示例。

于 2013-06-24T13:27:52.457 回答