项目场景:
进行初始化git的时候
问题描述:
进行初始化git的时候:
git init
git add .
git branch -M master
git remote add origin git@github.com:xxx/xxxx.git
git push origin master
到了git branch -M master
这一步,报错:
> git branch -M master
error: refname refs/heads/master not found
fatal: Branch rename failed
原因分析:
找了一大圈原因,结果大跌眼镜
原因是:没有commit 成功!
解决方案:
重新commit