标签: git github git-subtree
我有一个本地git存储库。我首先调用git remote add <alias> <url>,然后调用git subtree add --squash --prefix=subfolder/ <alias> "<their tag>" -m "<my comment>"从另一个存储库中提取代码。我将所有内容推送到github。我将此存储库克隆到另一台计算机上,并注意到遥控器不存在。
git remote add <alias> <url>
git subtree add --squash --prefix=subfolder/ <alias> "<their tag>" -m "<my comment>"
是这个,应该是什么样?是否应该保留遥控器?我将如何更新子树?我应该在新克隆的仓库中手动设置遥控器吗?