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

@ -10,11 +10,11 @@ Performs an interactive rebase.
- You can optionally use the `--autosquash` option to automatically squash fixup commits.
- If you have merge conflicts or stop to make changes, you can continue the rebase when ready using `git rebase --continue` or abort it using `git rebase --abort`.
```sh
```shell
git rebase -i [--autosquash] <commit>
```
```sh
```shell
git rebase -i 3050fc0de
# Performs an interactive rebase starting from `3050fc0de`