]> git.scottworley.com Git - pinch/blobdiff - tests/lib/test-setup.sh
Quiet git init.defaultBranch hints during test runs
[pinch] / tests / lib / test-setup.sh
index 66d13eb8b776c5886873f0645118163306737735..f3eb661a175ff2b588f0aed2e4dfed6e1874e6e5 100644 (file)
@@ -1,5 +1,7 @@
 set -e
 
+export BACKOFF_MAX_TIME=0
+
 export GIT_AUTHOR_NAME=automation
 export GIT_COMMITTER_NAME=automation
 export GIT_AUTHOR_EMAIL=auto@mati.on
@@ -17,7 +19,7 @@ foo_setup() {
 
   repo_dir="`mktemp -d`"
   repo="$repo_dir/repo"
-  git init "$repo"
+  git -c init.defaultBranch=master init "$repo"
   (
     cd "$repo"
     echo Contents > test-file
@@ -28,6 +30,7 @@ foo_setup() {
   conf="`mktemp`"
   cat > "$conf" <<EOF
 [foo]
+type = git
 git_repo = file://$repo
 git_ref = master
 EOF