Tagged Questions
75
votes
7answers
22k views
How do you Remove an Invalid Remote Branch Reference from Git?
In my current repo I have the following output:
$ git branch -a
* master
remotes/origin/master
remotes/public/master
I want to delete 'remotes/public/master' from the branch list:
$ git branch ...
6
votes
2answers
98 views
Git: How to push from “no branch” to a new remote branch?
I did:
git co upstream/master # To no branch.
<then did a trivial edit on some file...>
git commit -a -m "Trivial edit"
git push origin NewBranch
But got this:
$ git push origin ...
2
votes
3answers
203 views
How do I list all remote branches in Git 1.7+?
I've tried git branch -r, but that only lists remote branches that I've tracked locally. How do I find the list of those that I haven't? (It doesn't matter to me whether the command lists all remote ...
1
vote
2answers
66 views
Git : How to get name of the branch tracked by the current one?
In order to write a specific script, I need to check is the current branch has a tracked remote and what is the name of this remote. Is there a way to get only the name of the branch tacked by the ...
1
vote
1answer
105 views
Git Remote branches
I currently have Git setup with a central bare repository which is accessed by two developers via remote repositories. I've hit on a problem when I've created a branch and then tried to push that ...