diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-03-06 14:54:00 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-06 14:54:00 -0800 |
commit | a4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d (patch) | |
tree | fc464f383288f3bfdc78d1bb74dd4221a0c37323 /builtin/mv.c | |
parent | Merge branch 'nm/tag-edit' (diff) | |
parent | mv: remove unneeded 'if (!show_only)' (diff) | |
download | tgif-a4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d.tar.xz |
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.c | 3 |
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) |