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

@ -8,11 +8,11 @@ Removes files from the staging area.
- Use `git restore --staged <pathspec>` to remove files from the staging area.
- `<pathspec>` can be a filename or a fileglob.
```sh
```shell
git restore --staged <pathspec>
```
```sh
```shell
git restore --staged "30seconds.txt"
# Remove the file `30seconds.txt` from the staging area