Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: change 'master' to 'main' in git commands and links #418

Merged
merged 1 commit into from
Nov 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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