Git

【Git】No tracked branch configured for branch master or the branch doesn't exist.

小破孩
2022-12-08 / 0 评论 / 719 阅读 / 正在检测是否收录...
遇到错误
No tracked branch configured for branch master or the branch doesn't exist.
To make your branch track a remote branch call, for example,
        
  以下两条命令搞定
  git branch --set-upstream-to=origin/master master
  git pull origin master --allow-unrelated-histories

  
0

评论 (0)

取消