我正在使用Dropbox
同步git
存储库,但现在当我尝试并push
收到错误消息时:
fatal: Reference has invalid format: 'refs/heads/master (MacBook-Pro's conflicted copy 2012-10-07)'
因此,Dropbox 似乎检测到了冲突并创建了一个副本。好的,没问题,所以我删除了冲突的文件。尽管如此,还是得到了上面的 git 错误。
$ git checkout master
M index.html
Already on 'master'
$ git add .
$ git commit -a -m "Cleanup repo"
[master ff6f817] Cleanup repo
1 file changed, 5 insertions(+), 5 deletions(-)
$ git push
fatal: Reference has invalid format: 'refs/heads/master (MacBook-Pro's conflicted copy 2012-10-07)'
The remote end hung up unexpectedly`
我怎样才能解决这个问题?谢谢。