Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following problem. I have a repo, which I originally cloned from github using hg-git, but since I've been developing on it in mercurial. The original dev also keeps updating the repo, so we have multiple heads and I merge whatever I want using TortoiseHg, it works really well (I think hg-git doesn't make a difference here). However I have the following problem: now I've pushed my version to BitBucket, and it has three branches.

3 default

I'm totally confused with this. Shouldn't a branch in git be a bookmark in Hg? Then why does BitBucket support branches and not bookmarks? I really don't get what is a branch in Hg and why do I have 3, when actually hg branch only lists one: default? Or they are actually not branches, but bookmarks, just BitBucket named them like this not to confuse git users? But this is a Hg repo (set to be Hg when I created initially), and I'm not using git!

When I try hg heads -q I get the exact same result:

235:03d08bcf3144
233:d7fbd581b9e1
227:abda0dc38b93

So is it actually a head what BitBucket calles a branch? Is so, how can I name them like branches in Git, like default, forked-from, etc.?

One idea I had in mind was to create a bookmark at each head. I figured out how to push -B each of them to BitBucket. Now it looks like this:

6 branch

So now it starts to make sense, but what can I do with the 3 defaults? Why are they there and what are they actually? Branches, heads or bookmarks in Hg?

And why do I have only one in BitBucket settings?

1 in settings

share|improve this question

1 Answer

You have three heads in single named branch "default" and these three heads are branches - anonymous branches

If you want to eliminate these branches inside "default" you have just merge heads (two heads - own line and pulled from upstream: I don't know without history, how you get third) in local repository before push to BitBucket

share|improve this answer
Third was just because the developer used two different repos. My problem is that I don't want to use named branches for branching, but just bookmarks. In the meanwhile I fixed it in the following way: 1. Most importantly I realized that my problem is that Mercurial pushes all branches by default. I fixed it with push --rev . or TortoiseHg's defaultpush = revision. 2. For fixing the actual repo, I closed down the heads with --close-branch, pushed to bitbucket and hg strip-ed local 3. Now a single-branch push fixed it The way bitbucket UI handles this is still very confusing. – zsero Jan 1 at 7:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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