OK.
(except "extra at the end of commit", which does not make it out
of the tree).
I am not sure if recording the bare SVN ``copied'' is very
useful. You would need to infer things from what SVN did to
tell if the copy is a tree copy inside a project (e.g. cp -r
i386 x86_64), tagging (e.g. svn-cp rHEAD trunk tags/v1.2), or
branching, wouldn't you? SVK merge ticket is a bit more useful
in that sense.
So far, git philosophy is to record things you _know_ about and
defer such guesswork to the future, so limiting what you record
to what you can actually see from the foreign SCM would be more
in line with it. For the same reason, if you are talking about
maildir managed under git, you should not have record anything
other than what git already records: "we used to have these
files, now we have these instead".
But I thought you were talking about caching what earlier
inference declared what happened, so that you do not have to do
the same inference every time. If that is the case, SVN level
"Copied:" is probably not what you would want to record, I
suspect. You would do some inference with the given information
("SVN says it copied this tree to that tree, what was it that it
really wanted to do? Was it a copy, or was it to create a
branch which was implemented as a copy?"), and record that,
hoping that information would help your other operations this
time and later.
So I think the order of questions you should be asking is:
- what operations are you trying to help?
- what information you would need to achieve those operations
better?
- among the second one, what will be necessary to be set in
stone (IOW, cannot be computed later), and what are
computable but expensive to recompute every time?
An example from an ancient thread.
With criss-cross merge between renamed trees, it was conjectured
that recording renames detected earlier would help later merges.
I think you should arrive at the list of "what we should record"
by thinking things in this order:
(1) currently criss-cross merge between renamed trees does not
work well (realization of the status quo);
(2) if we had this kind of information it would work better,
here are the things we need to record when a new commit is
made, and here is how to compute other information that can
be inferred, and here is how to use that information to
make the merge work better (solution without caching);
(3) but it is expensive to recompute information we said
computable in (2) if we were to do so every time. Let's
cache it.
I am getting an impression that you are doing only the first
half of (2) without other parts, which somewhat bothers me.
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html