1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

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 @@
{ "description": "stage a file and commit the change", "speed": 20 }

View File

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

View File

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

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 firstline > myfile2
echo secondline >> myfile2
echo thirdline >> myfile2
git add .
git commit -am "myfile2"
echo firstline2 > myfile2
echo secondline >> myfile2
echo thirdline2 >> myfile2
git commit -am "myfile2 update"
echo test3 > myfile3
git add .
git commit -am "myfile3"

View File

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

View File

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

View File

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

View File

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