Git CMD

命令格式

git pull [options] [<repository> [<refspec>…​]]

命令参数

-q, --quiet
  安静模式。

-v, --verbose
  详情模式。

实例

a) 下载远程仓库的 master 分支,并与本地的当前仓库合并。

$ git pull origin master

更多

http://git-scm.com/docs/git-pull

原文地址:https://www.cnblogs.com/huey/p/5092044.html