Ich verwende Dropbox
zum Synchronisieren eines git
Repositorys, aber jetzt, wenn ich es versuche und push
eine Fehlermeldung erhalte:
fatal: Reference has invalid format: 'refs/heads/master (MacBook-Pro's conflicted copy 2012-10-07)'
Es scheint also, dass Dropbox einen Konflikt erkannt und eine Kopie erstellt hat. Ok, kein Problem, also habe ich die in Konflikt stehende Datei gelöscht. Trotzdem wird der obige Git-Fehler angezeigt.
$ 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`
Wie kann ich das beheben? Vielen Dank.