我在GitHub上使用gh-pages。
我不希望master中的内容包含在gh-pages分支中。
我没有能力使用--orphan(没有sudo权限,git isn不是最新的。)
如果我使用git checkout -b gh-pages
来自master的所有内容都包含在gh-pages分支中。我不希望他们分享任何内容。
如何在不从master中删除内容或使用--orphan
命令生成干净分支?
答案 0 :(得分:0)
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
然后现在git add
,git commit
等