As a follow up to How to push from a bitbucket repository to a bitbucket repository, and after reading Fork a Repo, Compare Code, and Create a Pull Request these steps somehow fail:
0a23cca9cf3c
& 000000000000
are unrelated.I expected the compare to succeed. Why does it fail?
In addition, I tried to do a pull request from jeroenp to NickHodges via https://bitbucket.org/jeroenp/codingindelphi/pull-request/new It takes forever without completing.
Why doesn't it complete? And how can I make it complete?
--jeroen
Jeroen,
https://bitbucket.org/NickHodges/codingindelphi/src is completely empty. There is nothing to compare the fork with the original. Once the original has at least an initial commit, things will work as you expect.
--Marcus Bertrand / Bitbucket
Thanks!
Since I'm not only interested in the 'how to solve this', but also on the 'why did this fail'.
Please correct any observations / reasoning I make during my search for the 'why':
C:\temp>hg id -i -r0 --debug https://bitbucket.org/jeroenp/CodingInDelphi ... 0a23cca9cf3c87f72e48aa54c06a9f45aed1c94d
and
C:\temp>hg id -i -r0 --debug https://bitbucket.org/NickHodges/CodingInDelphi ... 0000000000000000000000000000000000000000
It looks like - even though the first is a clone from the second - their root revision IDs differ, which raises the question: why do they differ?
So I looked at the local logs (too bad you cannot perform a log on a remote repository):
C:\Users\Developer\HG\bitbucket.org\jeroenp\CodingInDelphi>hg log -r0 --debug changeset: 0:0a23cca9cf3c87f72e48aa54c06a9f45aed1c94d tag: tip parent: -1:0000000000000000000000000000000000000000 parent: -1:0000000000000000000000000000000000000000 manifest: 0:5c29c39f91a382ca4abb38fcf5dfd08e3fb75407 user: ...@... date: Wed Jul 17 15:45:25 2013 +0200 files+: .hgignore extra: branch=default ...
and
C:\Users\Developer\HG\bitbucket.org\NickHodges\CodingInDelphi>hg log -r0 --debug changeset: -1:0000000000000000000000000000000000000000 tag: tip parent: -1:0000000000000000000000000000000000000000 parent: -1:0000000000000000000000000000000000000000 manifest: -1:0000000000000000000000000000000000000000 user: date: Thu Jan 01 00:00:00 1970 +0000 extra: branch=default
I think it has to do with the nullid nodeid.
(continued in next comment...)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
(... continued from previous comment because of the 2000 character limitation)
Somehow for an empty repository, the first revision not only points to null, but is null as well, which means the repository also has a nullid as ID.
As soon as you commit your very first change to an empty repository, the first revision itself is changed to point to a hidden null revision:
Finally, I found out the empty repository cannot be tagged. Since r0 has nullid for changeset/manifest, it is indeed called null revision:
C:\Users\Developer\HG\bitbucket.org\NickHodges\CodingInDelphi>hg tag -r0 identity abort: cannot tag null revision
I think it would be wise to add a warning in bitbucket somewhere that if you clone an empty revision, that this is unwise to do so as you cannot compare it to the original, nor perform pull requests.
--jeroen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We're going to prevent users from being able to fork an empty repotiory. You are very correct that if you make a commit in both of the repositories independently, the two repositories won't be related and you'll never be able to perform a Pull Request between them. We've opened two tickets to fix and prevent this faulty behavior:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To fix this: commit a change to the NickHodges repository. If the jeroenp repository already has a file: make a backup (otherwise you get messages like "Unable to merge: Unrelated branches"). Delete the jeroenp repository, then build it from scracth (fork, commit changes, compare, create pull requests).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.