git 报错 fatal: Updating an unborn branch with changes added to the index.
在使用 git的时候 想把码云上的文件拉取到本地发现报错git pull --rebase origin masterfatal: Updating an unborn branch with changes added to the index. 后来发现原来是 提交到版本库中的文件没有没有提交到 分支中,还在暂存区所以执行 git commit -m 'xx' 就行了...