Download objects and refs from another repository
用于从另一个存储库下载对象和引用
可以用于本地显示的更新远程分支列表。
# 语法git fetch <remote># 示例git fetch origin master
在本地删除远程已经不存在的分支
git fetch --prune# 或者git fetch -p# 删除指定分支git fetch -p origingit remote prune origin
一旦远程主机的版本库有了更新,需要将这些更新取回本地。
# 语法git fetch <repository># 示例git fetch git@github.com:facebook/react.git
# 跟随远程删除分支的操作删除本地分支git fetch -p# 跟随远程删除分支的操作删除本地taggit fetch -P