码迷,mamicode.com
首页 > 其他好文 > 详细

Git error:'fatal: Couldn't find remote ref master'

时间:2021-01-04 11:08:12      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:efi   vat   cpp   str   删除   check   blank   key   objective   

本文选取并翻译自:https://saywebsolutions.com/blog/git-github-error-fatal-couldnt-find-remote-ref-master

如果出现该错误提示,可能是因为使用了旧命令:

   git pull origin master

master现在被认为是有种族歧视的,github将其换成了main,所以现在使用pull可以写为:

   git pull origin main

如需要将已有repos的master换为main,可依照以下步骤:

  • 1-重命名本地分支:

     git branch -m master main
    
  • 2-重命名远程分支

     git checkout main
    
     git push -u origin main
    
  • 3-删除远程分支master

     git push origin --delete master
    
  • 4-告知团队中的其他人更新他们的本地库,方法如下:

     # Switch to "master" branch
    
     git checkout master
    
     # Rename "master" branch to "main"
    
     git branch -m master main
    
     # Get latest commits and branches from remote
    
     git fetch
    
     # Remove existing connection with "master"
    
     git branch --unset-upstream
    
     # Create connection with new "main" branch
    
     git branch -u origin/main
 

Git error:'fatal: Couldn't find remote ref master'

标签:efi   vat   cpp   str   删除   check   blank   key   objective   

原文地址:https://www.cnblogs.com/mygh/p/14214224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!