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

@ -9,11 +9,11 @@ Creates and switches to a new branch, optionally setting up a remote tracking br
- You can optionally add `-t <remote>/<branch>` to set up a remote tracking branch for the newly created branch.
- Note: You can alternatively use `git branch <branch> [-t <remote>/<branch>]` and then `git checkout <branch>` separately.
```sh
```shell
git checkout -b <branch> [-t <remote>/<branch>]
```
```sh
```shell
git checkout -b patch-1
# Local branch, without a remote tracking branch