Git子树&除了提交的工作空间之外的工作空间中的.git / config文件中缺少远程信息。
其他拉动git repo的用户无法在.git / config文件中看到远程仓库信息
他们无法更新或修改子树。
我使用以下命令添加子树
$ git remote add -f github.com/google/cadvisor https://github.com/google/cadvisor.git
$ git merge -s ours --no-commit github.com/google/cadvisor/master
$ git read-tree --prefix = github.com / google / cadvisor -u github.com/google/cadvisor/master
$ git commit -m""
让它运作的最佳方法是什么?