git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pete Wyckoff <pw@padd.com>
To: Luke Diamand <luke@diamand.org>
Cc: Git Users <git@vger.kernel.org>, Vitor Antunes <vitor.hda@gmail.com>
Subject: Re: git p4: any way to avoid rebasing all the time?
Date: Wed, 18 Apr 2012 07:53:01 -0400	[thread overview]
Message-ID: <20120418115301.GA24716@padd.com> (raw)
In-Reply-To: <CAE5ih7_Fh0XA-XNNvtHnXhYwUvwmmg-Z+y-Mb5Wvra3Y83eFsw@mail.gmail.com>

luke@diamand.org wrote on Wed, 11 Apr 2012 18:27 +0200:
> Is there a way to get "git p4" to not rebase all the time?
> 
> Right now, git commits get discarded and replaced with new ones with
> the same contents and extra git-p4 metadata embedded in the comment.
> 
> If we put this git-p4 metadata into a git note then we would not need
> to rewrite the commits, and so could perhaps avoid rebasing quite so
> much.

I don't know if it is always true that the change that went from
git to p4 and back is identical to the original git commit.
Things like timestamp and maybe author name?  We have evil
systems that rewrite p4 change descriptions post submit, worse
yet.

You can do funny merges to make it look like you're not rebasing:

  o--o--o   p4/master
         \
          A--B   top

submit:

  o--o--o--A'--B'  p4/master
         \
          A--B   top

merge -s ours, so that M == B' == B.

  o--o--o--A'--B'  p4/master
         \      \
          A--B---M  top

The merge changes nothing, but avoids a rebase for anything that
depended on the original A and B.

> However, if "git p4" won't rewrite commits, then it can't reorder them
> to match the ordering seen from p4.
> 
> So you could end up with git users seeing OLDHEAD,G,P and p4 users
> seeing OLDHEAD,P,G, as there's a race to see who submits against
> OLDHEAD first, which p4 always wins.
> 
> Would this matter (assuming the git and p4 commits are all reasonably
> independent) or is there a way to avoid it?
> 
> Perhaps hook into the pre-receive hook? If the newest p4 changelist is
> not the same as the HEAD of the branch being pushed to, then reject
> the push, just as would happen if the branch could not be
> fast-forwarded in a normal git repo? (Even with this there is still a
> small window of opportunity).

Yes, the race issues are tough.  There is no way in p4 to ensure
a given existing ancestor when submitting.  Closest you can come
is with locking, which is sometimes annoying to other users:

    p4 lock //depot/path/...
    <verify same change number>
    p4 submit
    p4 unlock //depot/path/...

You can lock just the files being submitted, but that doesn't
prevent other non-intersecting changes from sneaking in.

If there is a series of git commits, they can be checked in
atomically on a side branch in p4, and merged.  That doesn't help
your rebase issue, but is a way to keep a series of changes from
being broken up by races at p4.

                -- Pete

> At that point, the "git p4 rebase" command would still be used, but
> would normally be a no-op.
> 
> Or would that result in something far too complicated to have any
> chance of working?

      parent reply	other threads:[~2012-04-18 11:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-11 16:27 git p4: any way to avoid rebasing all the time? Luke Diamand
2012-04-11 17:22 ` Vitor Antunes
2012-04-18 11:53 ` Pete Wyckoff [this message]

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=20120418115301.GA24716@padd.com \
    --to=pw@padd.com \
    --cc=git@vger.kernel.org \
    --cc=luke@diamand.org \
    --cc=vitor.hda@gmail.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).