Git Pull 拉取的用法

最近写Hexo-MengD(萌典)主题老出现bug不得不使用这些Git指令
而且这些命令不常用,记不住,就记录一下

其他于Git命令相关的文章

  1. Git 解决 (master|MERGING)
  2. Git撤回Push到远程的代码
  3. Git分支合并(dev合并到master)

写法(其中<>只是为了标识)

COPY
1
git pull <远程主机名> <远程分支名>:<本地分支名>
COPY
1
git pull origin master:master

将远程主机origin的master分支拉取下来,与本地的master分支合并。
后面的冒号可以省略(这种写法不推荐,为避免不必要的麻烦,还是补齐比较好)

COPY
1
git pull origin master
Authorship: Lete乐特
Article Link: https://blog.imlete.cn/article/Git-Pull.html
Copyright: All posts on this blog are licensed under the CC BY-NC-SA 4.0 license unless otherwise stated. Please cite Lete乐特 's Blog !