I am new to git and have done following setup:
Now I want move my commits from the B to A. Then from A to S but I think this will not be the problem.
I tried to follow this text and tried to call
git bundle create commit.bundle L..H
,where L is the identifier for the last commit that is on both A and B, and H is the identifier for the last commit in B.
This gives:
fatal: Refusing to create empty bundle.
I clearly do not know how to do this right. I suppose it might have do something with me not using a bundle in my step 3 or that L and H are on a branch and I need to provid more information.
From here I know that:
git bundle will only package references that are shown by git show-ref
But I am not sure what this means. When I just type in git show-ref it gives a short list, that includes my commits H and L.
By using the names for the commits given in git show-ref
the problem disappears.