What the title says. Version of git is 1.5.6.3
I’ve tried using git branch –track
But it throws errors saying that the branches already exist. I am confused.
Thanks in advance!
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.
If you have a branch named, e.g., “develop” and you want to “unlink” it from a similarly named branch on a remote, try this:
This will remove the configuration from your local working copy.
Take a look at
git config --listbefore and after this change to see the difference. You could obviously accomplish the same thing by simply editing your.git/configfile, but I like to usegit configinstead.