I am using the Git app and every time I open a certain repo I get this error:
http://cl.ly/image/271p2h283j1g
Any help would be great. Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’re certainly using Dropbox to sync your project among multiple computers. While performing the sync, the tool detected a conflict between two files and created a backup with the suffix
(COMPUTER_NAME's conflicted copy DATE).Unfortunately, the conflicted file is a reference, and according to Git naming convention, the name of a reference cannot contain spaces. See git check-ref-format man page for more information about rules describing how references should be named.
As references are only text files containing pointers to a commit Sha or another reference, fixing this is not a complex issue.
In order to resolve this, the following steps should be followed:
.git/refs/remotes/heroku/masterand the.git/refs/remotes/heroku/master (Richard Burton's conflicted copy 2012-11-24)files in a text editor and decide which content is the most up to date (ie. which is the real tip of the remote master branch on Heroku)..git/refs/remotes/heroku/master.git/refs/remotes/heroku/master (Richard Burton's conflicted copy 2012-11-24)file.Note: you may have other files in conflict. In order to be thorough, launch a recursive search in your project for files which name contains
conflicted copyNote 2:
git ls-remote --heads herokumay be handy in this situation as it will request the remote repository about its known branchs.