Stevv's Blog

Do not go gentle into that good night

Github推送代码时报错

在使用git pull origin master把代码更新到Github仓库时报错:fatal: couldn’t find remote ref master,因为Github更改了命令, master被认为有种族歧视的含义, 现在用main代替, 所以现在使用pull可以写为

1
git pull origin main

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

1:重命名本地分支:

1
git branch -m master main

2:重命名远程分支

1
2
git checkout main
git push -u origin main

3:删除远程分支master

1
git push origin --delete master