Improving the PR Template and Contributor-Cheatsheet
This commit is contained in:
parent
533a66caf6
commit
7ff65be38c
|
@ -5,3 +5,11 @@
|
||||||
1. Edit sigs.yaml with your change
|
1. Edit sigs.yaml with your change
|
||||||
2. Generate docs with `make generate`. To build docs for one sig, run `make WHAT=sig-apps generate`
|
2. Generate docs with `make generate`. To build docs for one sig, run `make WHAT=sig-apps generate`
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
**Which issue(s) this PR fixes**:
|
||||||
|
<!--
|
||||||
|
*Automatically closes linked issue when PR is merged.
|
||||||
|
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
|
||||||
|
_If PR is about `failing-tests or flakes`, please post the related issues/tests in a comment and do not use `Fixes`_*
|
||||||
|
-->
|
||||||
|
Fixes #
|
||||||
|
|
|
@ -332,12 +332,13 @@ remotes.
|
||||||
#### Keeping Your Fork in Sync
|
#### Keeping Your Fork in Sync
|
||||||
|
|
||||||
Fetch all the changes from `upstream` and _"rebase"_ them on your local `master`
|
Fetch all the changes from `upstream` and _"rebase"_ them on your local `master`
|
||||||
branch. This will sync your local repo with the `upstream` project.
|
branch. This will sync your local repo with the `upstream` project. Push the local changes to your `remote master`.
|
||||||
|
|
||||||
```
|
```
|
||||||
git fetch upstream
|
git fetch upstream
|
||||||
git checkout master
|
git checkout master
|
||||||
git rebase upstream/master
|
git rebase upstream/master
|
||||||
|
git push
|
||||||
```
|
```
|
||||||
|
|
||||||
You should do this minimally before creating a new branch to work on your
|
You should do this minimally before creating a new branch to work on your
|
||||||
|
|
Loading…
Reference in New Issue