aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLukas Fleischer <cgit@cryptocrack.de>2013-08-26 20:38:31 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2013-08-26 21:01:11 +0200
commit370535fc70e87e465e0d6b39420b0b6a72056b37 (patch)
tree9d39703b4052bf9521dcf6e4335830899d5411ea /tests
parentgit: update to 1.8.4 (diff)
downloadcgit-370535fc70e87e465e0d6b39420b0b6a72056b37.tar.xz
cgit-370535fc70e87e465e0d6b39420b0b6a72056b37.zip
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>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/t0108-patch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh
index 3b5bae4..867d739 100755
--- a/tests/t0108-patch.sh
+++ b/tests/t0108-patch.sh
@@ -24,7 +24,7 @@ test_expect_success 'find `cgit` signature' '
'
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' '