X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/blobdiff_plain/edca53204c2461fd451bf3a8bbb18e59c6260523..04b442170d797b1cb80700838c41b7222040236c:/t/test-lib.sh?ds=inline diff --git a/t/test-lib.sh b/t/test-lib.sh index 2d12f1b..3d114a2 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -226,12 +226,12 @@ test_create_repo () { repo="$1" mkdir "$repo" cd "$repo" || error "Cannot setup test environment" - git-init >/dev/null 2>&1 || - error "cannot run git-init -- have you installed git-core?" + git init >/dev/null 2>&1 || + error "cannot run git init -- have you installed git-core?" mkdir .git/info echo "empty start" | - git-commit-tree `git-write-tree` >.git/refs/heads/master 2>&4 || - error "cannot run git-commit -- is your git-core functioning?" + git commit-tree `git write-tree` >.git/refs/heads/master 2>&4 || + error "cannot run git commit -- is your git-core functioning?" cd "$owd" }