有什么方法可以使git子树保持最新状态,同时在父仓库上运行git pull
以外的任何内容?
https://www.atlassian.com/blog/git/alternatives-to-git-submodule-git-subtree
使用远程git repos时-开发人员可能会忘记更新子树-除非它是自动的。是否有某种方法可以配置每次运行git fetch
时更新子树?
根据我的测试,看起来我对父仓库执行了git pull
之后,我必须运行:
git subtree pull --prefix=hooks --squash <remote> master
然后,获取最新的子树。我的目标是在执行git fetch等操作时运行git subtree pull
命令。