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

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.

解决方法:

Edit your .git/config

[branch "master"]
  remote = origin
  merge = refs/heads/master
参考:
https://stackoverflow.com/questions/4847101/git-which-is-the-default-configured-remote-for-branch

相关文章:

  • 2022-12-23
  • 2021-11-13
  • 2022-02-19
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-01-22
  • 2022-02-09
猜你喜欢
  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
  • 2021-11-23
相关资源
相似解决方案