mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-22 16:20:19 +01:00
less commits in bisect level
This commit is contained in:
parent
0781649227
commit
c50d012e00
1 changed files with 5 additions and 5 deletions
|
@ -17,16 +17,16 @@ After you've found the last good commit, reset the main branch to it. What happe
|
||||||
|
|
||||||
echo "You still have your key." > you
|
echo "You still have your key." > you
|
||||||
|
|
||||||
for i in {1..60}; do
|
for i in {1..30}; do
|
||||||
if test $i -eq 18; then
|
if test $i -eq 12; then
|
||||||
echo "Your pocket is empty." > you
|
echo "Your pocket is empty." > you
|
||||||
echo "Is on the ground." > key
|
echo "Is on the ground." > key
|
||||||
fi
|
fi
|
||||||
if test $i -eq 19; then
|
if test $i -eq 13; then
|
||||||
echo "Is holding a key in its beak." > bird
|
echo "Is holding a key in its beak." > bird
|
||||||
rm key
|
rm key
|
||||||
fi
|
fi
|
||||||
if test $i -eq 20; then
|
if test $i -eq 14; then
|
||||||
rm bird
|
rm bird
|
||||||
fi
|
fi
|
||||||
git add .
|
git add .
|
||||||
|
@ -36,7 +36,7 @@ done
|
||||||
[win]
|
[win]
|
||||||
|
|
||||||
# Find the last good commit
|
# Find the last good commit
|
||||||
test "$(git log --pretty=%s main | head -1)" -eq 17
|
test "$(git log --pretty=%s main | head -1)" -eq 11
|
||||||
|
|
||||||
[congrats]
|
[congrats]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue