Skip to content

Commit

Permalink
docs: change 'master' to 'main' in git commands and links (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
fasttime committed Nov 3, 2022
1 parent 7f1069d commit 4ab9fba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Expand Up @@ -4,7 +4,7 @@ the requirements below.
Bug fixes and new features should include tests and possibly benchmarks.
Contributors guide: https://github.com/bcoe/c8/blob/master/CONTRIBUTING.md
Contributors guide: https://github.com/bcoe/c8/blob/main/CONTRIBUTING.md
-->

##### Checklist
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Expand Up @@ -23,10 +23,10 @@ Pull Requests are the way concrete changes are made to the code, documentation,
git fetch upstream
```

1. Create local branches to work within. These should also be created directly off of the master branch:
1. Create local branches to work within. These should also be created directly off of the main branch:

```sh
git checkout -b my-branch -t upstream/master
git checkout -b my-branch -t upstream/main
```

1. Make your changes
Expand All @@ -47,7 +47,7 @@ Pull Requests are the way concrete changes are made to the code, documentation,

```sh
git fetch upstream
git rebase upstream/master
git rebase upstream/main
```

1. Run tests again to make sure all is okay
Expand Down

0 comments on commit 4ab9fba

Please sign in to comment.