Am 08.05.2011 13:22, schrieb Jens Lehmann: > Am 07.05.2011 21:24, schrieb Junio C Hamano: >> We may also want to add "read-tree -n" so that you do not have to specify >> a dummy index output only to prevent from writing the real index over, >> though. > > Hmm, wouldn't using "read-tree --index-output=/dev/null" be equivalent to > "read-tree -n"? But nonetheless it might make sense to add the -n option. No idea how I could manage to test "read-tree --index-output=/dev/null" successfully without getting an "unable to write new index file" error. But using read-tree works for me, so what about something like this, maybe with some more tests? -------------8<--------------- Subject: [PATCH] Teach read-tree the -n|--dry-run option Using this option tells read-tree to not update the index. That makes it possible to check if updating the index would be successful without changing it. As using --dry-run is expected to have no side effects, this option makes no sense together with "-u". Signed-off-by: Jens Lehmann <Jens.Lehmann@xxxxxx> --- Documentation/git-read-tree.txt | 5 +++++ builtin/read-tree.c | 7 +++++-- t/t1000-read-tree-m-3way.sh | 2 ++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Documentation/git-read-tree.txt b/Documentation/git-read-tree.txt index 26fdadc..a35849f 100644 --- a/Documentation/git-read-tree.txt +++ b/Documentation/git-read-tree.txt @@ -53,6 +53,11 @@ OPTIONS trees that are not directly related to the current working tree status into a temporary index file. +-n:: +--dry-run:: + Don't write the index file. This option isn't allowed together + with -u. + -v:: Show the progress of checking files out. diff --git a/builtin/read-tree.c b/builtin/read-tree.c index 93c9281..693576f 100644 --- a/builtin/read-tree.c +++ b/builtin/read-tree.c @@ -98,7 +98,7 @@ static struct lock_file lock_file; int cmd_read_tree(int argc, const char **argv, const char *unused_prefix) { - int i, newfd, stage = 0; + int i, newfd, stage = 0, dry_run = 0; unsigned char sha1[20]; struct tree_desc t[MAX_UNPACK_TREES]; struct unpack_trees_options opts; @@ -130,6 +130,7 @@ int cmd_read_tree(int argc, const char **argv, const char *unused_prefix) PARSE_OPT_NONEG, exclude_per_directory_cb }, OPT_SET_INT('i', NULL, &opts.index_only, "don't check the working tree after merging", 1), + OPT__DRY_RUN(&dry_run, "don't update the index"), OPT_SET_INT(0, "no-sparse-checkout", &opts.skip_sparse_checkout, "skip applying sparse checkout filter", 1), OPT_SET_INT(0, "debug-unpack", &opts.debug_unpack, @@ -183,6 +184,8 @@ int cmd_read_tree(int argc, const char **argv, const char *unused_prefix) die("--exclude-per-directory is meaningless unless -u"); if (opts.merge && !opts.index_only) setup_work_tree(); + if (opts.update && dry_run) + die("--dry-run contradicts -u"); if (opts.merge) { if (stage < 2) @@ -219,7 +222,7 @@ int cmd_read_tree(int argc, const char **argv, const char *unused_prefix) if (unpack_trees(nr_trees, t, &opts)) return 128; - if (opts.debug_unpack) + if (opts.debug_unpack || dry_run) return 0; /* do not write the index out */ /* diff --git a/t/t1000-read-tree-m-3way.sh b/t/t1000-read-tree-m-3way.sh index ca8a409..bcfb5e6 100755 --- a/t/t1000-read-tree-m-3way.sh +++ b/t/t1000-read-tree-m-3way.sh @@ -259,6 +259,8 @@ test_expect_success \ "rm -f .git/index AA && cp .orig-A/AA AA && git update-index --add AA && + git read-tree -n -m $tree_O $tree_A $tree_B && + test_must_fail check_result && git read-tree -m $tree_O $tree_A $tree_B && check_result" -- 1.7.5.1.218.g8af57 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html