【发布时间】:2015-05-30 19:37:18
【问题描述】:
我指的是以下文章:git subtree blog entry。
其中列出了以下命令:
git remote add -f tpope-vim-surround https://bitbucket.org/vim-plugins-mirror/vim-surround.git
git subtree add --prefix .vim/bundle/tpope-vim-surround tpope-vim-surround master --squash
git fetch tpope-vim-surround master
git subtree pull --prefix .vim/bundle/tpope-vim-surround tpope-vim-surround master --squash
我的问题是:
git fetch tpope-vim-surround master需要什么?
下一行列出的 git pull 是不是多余?
【问题讨论】:
标签: git git-subtree