Git fork

t/t1700-split-index.sh: mv -v is not portable

The -v option for mv is not specified by POSIX. The illumos
implementation of mv does not support -v. Since we do not need the
verbose mv output we just drop -v for mv.

Signed-off-by: Marcel Telka <marcel@telka.sk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Marcel Telka and committed by
Junio C Hamano
50acb483 05e5ff03

+1 -1
+1 -1
t/t1700-split-index.sh
··· 527 527 528 528 # ... and, for backwards compatibility, in the current GIT_DIR 529 529 # as well. 530 - mv -v ./reading-alternate-location/.git/sharedindex.* .git && 530 + mv ./reading-alternate-location/.git/sharedindex.* .git && 531 531 GIT_INDEX_FILE=./reading-alternate-location/.git/index \ 532 532 git ls-files --cached >actual && 533 533 test_cmp expect actual