From: Jeff King <peff@peff.net>
To: Thomas Rast <trast@inf.ethz.ch>
Cc: "Stefan Schüßler" <mail@stefanschuessler.de>,
git@vger.kernel.org, "Junio C Hamano" <gitster@pobox.com>
Subject: Re: [PATCH] pull: pull into void by fast-forwarding from empty tree
Date: Thu, 20 Jun 2013 08:47:58 -0400 [thread overview]
Message-ID: <20130620124758.GA2376@sigill.intra.peff.net> (raw)
In-Reply-To: <45f6841746e5dcea03a97fc3ea24aef274728023.1371731513.git.trast@inf.ethz.ch>
On Thu, Jun 20, 2013 at 02:36:03PM +0200, Thomas Rast wrote:
> The logic for pulling into an unborn branch was originally designed to
> be used on a newly-initialized repository (d09e79c, git-pull: allow
> pulling into an empty repository, 2006-11-16). It thus did not
> initially deal with uncommitted changes in the unborn branch. The
> case of an _unstaged_ untracked file was fixed by by 4b3ffe5 (pull: do
> not clobber untracked files on initial pull, 2011-03-25). However, it
> still clobbered existing staged files, both when the file exists in
> the merged commit (it will be overwritten), and when it does not (it
> will be lost!).
Yeah, in 4beffe5 I just assumed that using "read-tree -m" would give us
the protections we need. But obviously I didn't think about the fact
that we are not giving it enough information.
> We fix this by doing a two-way merge, where the "current" side of the
> merge is an empty tree, and the "target" side is HEAD (already updated
> to FETCH_HEAD at this point). This amounts to claiming that all work
> in the index was done vs. an empty tree, and thus all content of the
> index is precious.
This seems like the correct fix; it is giving read-tree the right
information to make the decision. Thanks for working on this.
> +test_expect_success 'pulling into void does not overwrite staged files' '
> + git init cloned-staged-colliding &&
> + (
> + cd cloned-staged-colliding &&
> + echo "alternate content" >file &&
> + git add file &&
> + test_must_fail git pull .. master &&
> + echo "alternate content" >expect &&
> + test_cmp expect file
> + )
> +'
> +
> +test_expect_success 'pulling into void does not remove new staged files' '
> + git init cloned-staged-new &&
> + (
> + cd cloned-staged-new &&
> + echo "new tracked file" >newfile &&
> + git add newfile &&
> + git pull .. master &&
> + echo "new tracked file" >expect &&
> + test_cmp expect newfile
> + )
> +'
Do we want to also check the index state after each pull? In the former
case, I think it should obviously represent a conflict. In the latter,
we should be retaining the index contents of newfile.
These are basic things that read-tree's two-way merge should get right
(and are presumably tested elsewhere), but it might be worth confirming
the desired behavior here in case somebody later tries to tweak this
code path not to use read-tree.
-Peff
next prev parent reply other threads:[~2013-06-20 12:48 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-20 12:36 [PATCH] pull: pull into void by fast-forwarding from empty tree Thomas Rast
2013-06-20 12:47 ` Jeff King [this message]
2013-06-20 13:06 ` [PATCH v2] pull: merge into unborn " Thomas Rast
2013-06-20 13:15 ` Jeff King
2013-06-20 13:20 ` Thomas Rast
2013-06-20 13:33 ` Thomas Rast
2013-06-20 13:47 ` Jeff King
2013-06-20 14:29 ` Thomas Rast
2013-06-20 14:22 ` Thomas Rast
2013-06-20 18:43 ` Junio C Hamano
2013-06-20 20:19 ` Jeff King
2013-06-20 20:49 ` Junio C Hamano
2013-06-20 20:55 ` Jeff King
2013-06-20 21:45 ` Junio C Hamano
2013-06-20 22:03 ` Jeff King
2013-06-20 22:35 ` [PATCHv3 0/2] pull into unborn branch safety tree Jeff King
2013-06-20 22:36 ` [PATCH 1/2] pull: update unborn branch tip after index Jeff King
2013-06-20 22:38 ` [PATCH 2/2] pull: merge into unborn by fast-forwarding from empty tree Jeff King
2013-06-20 22:52 ` [PATCHv3 0/2] pull into unborn branch safety tree Junio C Hamano
2013-06-20 16:04 ` [PATCH] pull: pull into void by fast-forwarding from empty tree Ramkumar Ramachandra
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=20130620124758.GA2376@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=mail@stefanschuessler.de \
--cc=trast@inf.ethz.ch \
/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).