Sto usando Dropbox
per sincronizzare un git
repository, ma ora quando provo e push
ricevo un errore:
fatal: Reference has invalid format: 'refs/heads/master (MacBook-Pro's conflicted copy 2012-10-07)'
Quindi, sembra che Dropbox abbia rilevato un conflitto e ne abbia creato una copia. Ok, nessun problema, quindi ho eliminato il file in conflitto. Tuttavia, ottenendo l'errore git sopra riportato.
$ 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`
Come posso risolvere questo problema? Grazie.