如何删除git子树引用

时间:2015-02-26 19:56:07

标签: git git-subtree subtree

我通过

添加了一个子树
git subtree add --prefix=path/to/example --squash git@github.com:johndoe/example.git master

并想删除它。 There's no git subtree rm command.我已删除path/to/example中的所有文件,但我list subtreespath/to/example仍会显示

git log | grep git-subtree-dir | awk '{ print $2 }'

如何从git中删除子树引用,以便无法再推/拉/等等?

1 个答案:

答案 0 :(得分:3)

简单地remove the remote,即子树参考:git remote rm example