git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* What exactly is a "initial checkout"
@ 2018-11-06 12:38 Christian Halstrick
  2018-11-06 21:18 ` Jeff King
  2018-11-07  0:07 ` Junio C Hamano
  0 siblings, 2 replies; 5+ messages in thread
From: Christian Halstrick @ 2018-11-06 12:38 UTC (permalink / raw)
  To: Git; +Cc: rene.scheibe

I am trying to teach JGit [1] to behave like native git regarding some
corner cases during "git checkout". I am reading the "git read-tree"
documentation and I am not sure about the case [2]. Git should behave
differently during a normal checkout than when you are doing a
"initial checkout". I can imagine that the first checkout you do after
you have cloned a repo is a initial checkout but: What exactly defines
a "initial checkout"? It can't be an empty or non-existing index
because native git behaves like in a non-initial-checkout even if the
index is empty (see example below).

Here are some commands explaining my case. Git is facing an empty
index, HEAD and MERGE (the commit you checkout) have the some content
for path 'p'  and still git is neither updating index nor workingtree
file during checkout.

git init
mkdir p
echo initial >p/a
git add p/a
git commit -m initial
touch p2
git add p2
git commit -m followup
git rm -r p p2
echo "important data" >p
git checkout HEAD~ # successful checkout leaving p dirty
cat p # prints "important data", so 'p' is not updated during the checkout
git ls-files -sv  # empty -> index is empty

[1] https://www.eclipse.org/jgit/
[2] https://github.com/git/git/blob/master/Documentation/git-read-tree.txt#L187

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-07 23:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-06 12:38 What exactly is a "initial checkout" Christian Halstrick
2018-11-06 21:18 ` Jeff King
2018-11-07  0:07 ` Junio C Hamano
2018-11-07  8:50   ` Christian Halstrick
2018-11-07 23:33     ` Philip Oakley

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).