store everything you need to know about a test in its directory

This commit is contained in:
Jesse Duffield
2020-10-07 18:48:34 +11:00
parent bb081ca764
commit 88f2a66a51
15 changed files with 71 additions and 47 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/sh
cd $1
git init
git config user.email "CI@example.com"
git config user.name "CI"
echo test1 > myfile1
git add .
git commit -am "myfile1"
echo test2 > myfile2
git add .
git commit -am "myfile2"
echo test3 > myfile3
git add .
git commit -am "myfile3"
echo test4 > myfile4
git add .
git commit -am "myfile4"
echo test5 > myfile5
git add .
git commit -am "myfile5"

View File

@@ -0,0 +1 @@
{ "description": "" }