git fetch
从远程仓库抓取数据
拉取所有远程分支数据
git fetch git fetch [<remote_name>] <remote_branch_name>$ git fetch pb
remote: Counting objects: 58, done.
remote: Compressing objects: 100% (41/41), done.
remote: Total 44 (delta 24), reused 1 (delta 0)
Unpacking objects: 100% (44/44), done.
From git://github.com/paulboone/ticgit
* [new branch] master -> pb/master
* [new branch] ticgit -> pb/ticgitgit fetch命令与git pull命令区别
Last updated
Was this helpful?