Git conflicted copy error while cloning a repository

后端 未结 3 527
小鲜肉
小鲜肉 2021-02-07 05:35

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

3条回答
  •  梦如初夏
    2021-02-07 06:10

    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"..

提交回复
热议问题