git执行pull命令时,报错

在图形界面中,执行拉取操作时,出现下面的错误。

You asked to pull from the remote 'origin', but did not specify a branch. Because this is not the default configured remote for your current branch, you must specify a branch on the command line.

解决方法:

  修改:.git/config

[branch "master"]
  remote = origin
  merge = refs/heads/master

即:
[branch "你当前的分支"]
  remote = origin
  merge = refs/heads/你当前的分支


转载于:git执行pull命令时,报错 - KoMiles - 博客园 (cnblogs.com)

posted @ 2021-09-15 18:18  帝沐  阅读(1723)  评论(0)    收藏  举报