Reformat all code to use shell instead of sh

This commit is contained in:
Chalarangelo
2021-04-13 21:10:59 +03:00
parent ff970c154e
commit fd6fe2056d
83 changed files with 166 additions and 166 deletions

View File

@ -11,7 +11,7 @@ Uses a binary search algorithm and a given script to find which commit in histor
- Use `git bisect run <command>` to run the given `<command>` on each subsequent commit to find which commit introduce the bug.
- Use `git bisect reset` to reset to the original branch. You can optionally specify a `<commit>` to reset to.
```sh
```shell
git bisect start
git bisect good <commit>
git bisect bad <commit>
@ -19,7 +19,7 @@ git bisect run <command>
git bisect reset [<commit>]
```
```sh
```shell
git bisect start
git bisect good 3050fc0de
git bisect bad c191f90c7