Git 解决 (master|MERGING)

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

其他于Git命令相关的文章

  1. Git分支合并(dev合并到master)
  2. Git撤回Push到远程的代码
  3. Git Pull 拉取的用法

有时候在执行git pull之后出现(master|MERGING)(合并状态)

该如何解决呢?

解决办法如下

COPY
1
git reset --hard head

执行pull得时候要带上远程主机名+远程分支:当前分支

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

最后在执行push操作

Authorship: Lete乐特
Article Link: https://blog.imlete.cn/article/Git-Merging.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 !