Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t9402: Simplify git ls-tree
author
Torsten Bögershausen
<tboegi@web.de>
Sat, 8 Dec 2012 21:35:06 +0000
(22:35 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 9 Dec 2012 09:37:52 +0000
(
01:37
-0800)
Use "git ls-tree --name-only" which does not need a sed to filter out the sha
Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9402-git-cvsserver-refs.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
bd6f62c
)
diff --git
a/t/t9402-git-cvsserver-refs.sh
b/t/t9402-git-cvsserver-refs.sh
index c15abde3b82e4127f6aa34fc511299771d206708..7953ffccc6834866a04d0a347841d592d013db59 100755
(executable)
--- a/
t/t9402-git-cvsserver-refs.sh
+++ b/
t/t9402-git-cvsserver-refs.sh
@@
-41,7
+41,7
@@
check_end_full_tree() {
sort <"$WORKDIR/check.list" >expected &&
find "$sandbox" -name CVS -prune -o -type f -print | sed -e "s%$sandbox/%%" | sort >act1 &&
test_cmp expected act1 &&
- git ls-tree -
r "$2" | sed -e "s/^.*blob [0-9a-fA-F]*[ ]*//
" | sort >act2 &&
+ git ls-tree -
-name-only -r "$2
" | sort >act2 &&
test_cmp expected act2 &&
rm expected act1 act2
}