Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-03-07 01:54:00 +0300
committerJunio C Hamano <gitster@pobox.com>2018-03-07 01:54:00 +0300
commita4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d (patch)
treefc464f383288f3bfdc78d1bb74dd4221a0c37323 /builtin/mv.c
parent05d290e1dbd2ed424cd3c872c5b20390100fa5f7 (diff)
parent4cbe92fd41567e48ca60f4c810479b63ba8421fd (diff)
Merge branch 'sm/mv-dry-run-update'
Code clean-up. * sm/mv-dry-run-update: mv: remove unneeded 'if (!show_only)' t7001: add test case for --dry-run
Diffstat (limited to 'builtin/mv.c')
-rw-r--r--builtin/mv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/mv.c b/builtin/mv.c
index cf3684d907..8ce6a2ddd4 100644
--- a/builtin/mv.c
+++ b/builtin/mv.c
@@ -286,8 +286,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
pos = cache_name_pos(src, strlen(src));
assert(pos >= 0);
- if (!show_only)
- rename_cache_entry_at(pos, dst);
+ rename_cache_entry_at(pos, dst);
}
if (gitmodules_modified)