diff options
author | Lukas Fleischer <cgit@cryptocrack.de> | 2013-08-26 20:38:31 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-08-26 21:01:11 +0200 |
commit | 370535fc70e87e465e0d6b39420b0b6a72056b37 (patch) | |
tree | 9d39703b4052bf9521dcf6e4335830899d5411ea /tests | |
parent | git: update to 1.8.4 (diff) | |
download | cgit-pink-370535fc70e87e465e0d6b39420b0b6a72056b37.tar.gz cgit-pink-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-x | tests/t0108-patch.sh | 2 |
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' ' |