cgit

commit 370535fc70e87e465e0d6b39420b0b6a72056b37

Author: Lukas Fleischer <cgit@cryptocrack.de>

t0108: Avoid unnecessary fork()

Use `git rev-list --max-parents=0 HEAD` instead of `git rev-list HEAD |
tail -1` to get the root commit. This works since Git 1.7.4.2.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>

 tests/t0108-patch.sh | 2 +-


diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh
index 3b5bae44257b40cf655e57e2b20f1afabe7428ad..867d7393d6f0d388055d01d607cae0fd41635b31 100755
--- a/tests/t0108-patch.sh
+++ b/tests/t0108-patch.sh
@@ -24,7 +24,7 @@ 	tail -1 tmp | grep "^cgit"
 '
 
 test_expect_success 'find initial commit' '
-	root=$(git --git-dir="$PWD/repos/foo/.git" rev-list HEAD | tail -1)
+	root=$(git --git-dir="$PWD/repos/foo/.git" rev-list --max-parents=0 HEAD)
 '
 
 test_expect_success 'generate patch for initial commit' '