]> git.ipfire.org Git - thirdparty/git.git/commit
fast-import: stop creating leading directories for import-marks
authorJeff King <peff@peff.net>
Thu, 29 Aug 2019 17:07:04 +0000 (13:07 -0400)
committerJohannes Schindelin <johannes.schindelin@gmx.de>
Wed, 4 Dec 2019 12:20:04 +0000 (13:20 +0100)
commite075dba3723875f478654068609f69b2a5af8566
tree7b8e2f2e79663825d6f6085fbb5a149e033a04d6
parent11e934d56e46875b24d8a047d44b45ff243f6715
fast-import: stop creating leading directories for import-marks

When asked to import marks from "subdir/file.marks", we create the
leading directory "subdir" if it doesn't exist. This makes no sense for
importing marks, where we only ever open the path for reading.

Most of the time this would be a noop, since if the marks file exists,
then the leading directories exist, too. But if it doesn't (e.g.,
because --import-marks-if-exists was used), then we'd create the useless
directory.

This dates back to 580d5f83e7 (fast-import: always create marks_file
directories, 2010-03-29). Even then it was useless, so it seems to have
been added in error alongside the --export-marks case (which _is_
helpful).

Signed-off-by: Jeff King <peff@peff.net>
fast-import.c