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,13 +10,13 @@ Moves local commits from the `master` branch to a new branch.
- Use `git checkout <branch>` to switch to the new branch.
- Only works if the changes have only been committed locally and not pushed to the remote.
```sh
```shell
git branch <branch>
git reset HEAD~<n> --hard
git checkout <branch>
```
```sh
```shell
git checkout master
git add .
git commit -m "Fix network bug"