From: Michael Eager <eager@eagerm.com>
To: Stefan Beller <sbeller@google.com>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: Managing sub-projects
Date: Tue, 21 Jun 2016 16:06:43 -0700 [thread overview]
Message-ID: <5769C883.3060103@eagerm.com> (raw)
In-Reply-To: <CAGZ79kYqtLGHjEirP=6ssiUf2fuHirtKDXr117bjwomho2uf3A@mail.gmail.com>
Hi Stephan!
On 06/19/2016 07:01 PM, Stefan Beller wrote:
> On Sat, Jun 18, 2016 at 4:20 PM, Michael Eager <eager@eagerm.com> wrote:
>>
>> Any other ways to do what I want without creating a separate forked
>> repo for each of the sub-projects? Or have I misunderstood one of
>> these schemes?
>
> I think forking is the way to go here, as you want to have new code
> and maintain that.
This was my conclusion.
What I originally wanted was a repo with two origins, the upstream for
the master and public branches, and my repo for my branches. Git may
be able to do all kinds of magic, but this two-origin scheme sounded
strange after I thought about it for a while.
> Personally I would try out submodules.
I've used submodules on another project. There are some odd quirks,
and lots of web pages which say to avoid submodules like the plague, but I
didn't have lots of trouble. (After an initial bit of confusion while
getting familiar with submodules, which is what I can say about every
feature in Git.)
>> Git submodule: Branches created in the sub-projects are pushed to the
>> upstream repo, not to my repo. I tried to change origin and created an
>> upstream reference, but was not able to get changes pushed to my repo.
>
> Beware that there are 2 areas you need to look at. First the submodule repo
> needs to have a remote that points away from the projects origin (to your
> private fork).
I'll create an "upstream" remote to the project repo, so I can pull/rebase
from the upstream into my forked repo. The "origin" will point to my repo.
> Then you have to look at the superproject that
> 1) records the sha1 for the submodules internally
> 2) all other information except the tracking sha1s must be user provided,
> where the .gitmodules file contains recommendations (i.e. the url where to
> obtain the submodule from, whether to clone it shallowly,
> if we have a specific branch in mind). The contents of that file
> are not binding, e.g. if the url provided in the .gitmodules file becomes
> outdated later, it is still possible to setup the
> submodule/superproject correctly.
>
> However for your business purpose, you would put the url of the private forks
> in the recommended URL of the submodules.
>
> As the superproject only tracks the sha1, and has this recommended pointer
> where to get the submodule repository from, you need to take special care
> in a rebase workflow, because the old rebased commits fall out of the
> reachability
> of the graph of objects, e.g.:
>
> Say you have a version `abc` in a submodule that is one commit on top of
> canonical projects history, and `abc` is recorded as the sha1 in the
> superproject.
>
> Then you rebase the commit in the submodule to a newer version of the upstream,
> which then becomes a new commit `def` and `abc` is not referenced any more,
> so it can be garbage collected.
>
> This is bad for the history of the superproject as it then points to
> an unreachable
> commit in its history.
>
> To preserve the historic non-rebased `abc` commit, you could have a
> set of branches
> (or tags) that maintain all the old non rebased versions.
Sounds like every time I rebase, I should tag the repo to annotate this,
and (as a side effect) retain the history.
> This problem comes up with submodules with any workflow that requires
> non fast forward changes (forced pushes), I think.
>
> So maybe you need to have an alias in the submodule for rebasing, that
> is roughly:
>
> rebase:
> if rebased history is published
> create a tag, e.g.: "$(date -I)-${sha1}"
> (and push that tag here or later?)
> rebase as normal
> carry on with life
What do you mean "if rebased history is published".
Generally I'd apply a tag after the rebase was completed successfully,
then push both the updated branch and tags to my repo.
> To get back to your complaint:
>
>> I tried to change origin and created an
>> upstream reference, but was not able to get changes pushed to my repo.
>
> I would imagine this to be
>
> (cd submodule && git remote set-url origin <your fork> && git push origin)
>
> for plain pushing in the submodule and then
>
> $EDIT .gitmodules
> # edit submodule.<name>.url to point at <your fork>
>
> to get the superproject correct.
Thanks.
--
Michael Eager eager@eagercon.com
1960 Park Blvd., Palo Alto, CA 94306 650-325-8077
next prev parent reply other threads:[~2016-06-21 23:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-18 23:20 Managing sub-projects Michael Eager
2016-06-20 2:01 ` Stefan Beller
2016-06-21 23:06 ` Michael Eager [this message]
2016-06-21 23:36 ` Stefan Beller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5769C883.3060103@eagerm.com \
--to=eager@eagerm.com \
--cc=git@vger.kernel.org \
--cc=sbeller@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).