I am using dropbox as a git repository.

Now due to some issue in the syncing, there is some conflicted copy present in the git. How do I remove this conflict ? Due to this conflict I am unable to clone the contents of that repository.

The error I am getting while cloning the repository is:-

Git :- fatal: Reference has invalid format: 'refs/heads/debugging (xyz conflictedcopy date) '

link|improve this question

Using Dropbox as a git repository is a really bad idea. – James McLaughlin Feb 10 at 12:52
Yeah I know that now. I will change it. But how do I remove the conflicts ? any pointers ? – Akash Deshpande Feb 10 at 12:54
What does refs/heads/debugging contain? – James McLaughlin Feb 10 at 12:55
It contains files, which have records of the conflicted and normal copy. debugging debugging (xyz's conflicted copy 2011-12-19) master master (xyzwer's conflicted copy 2011-09-24) optimization optimization (xyz's conflicted copy 2011-12-19) production – Akash Deshpande Feb 10 at 12:59
Exact same problem.. today for the very first time after 4 years of git on dropbox.. are you using SourceTree by any chance? Haven't found a solution yet though.. there's nothing offensive under refs/heads/debugging.. – Frank R. Feb 10 at 13:01
show 8 more comments
feedback

2 Answers

up vote 2 down vote accepted

The solution that eventually worked for me was to simply delete the branch that the reference refers to, e.g.

git branch -D "debugging (xyz conflictedcopy date)"

I had many such references, so it was "rinse and repeat"..

link|improve this answer
feedback
Just delete every file in <Repo>/.git/ which ends in (... conflictedcopy <date>).

That will clean your git repo; the answer by Frank R. does in fact the same, while keeping the other by Dropbox abused files :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.