File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
mentoring/programs/contributor-workshop/guides Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,19 @@ This guide covers how to update segments in the Contributor Workshop.
16
16
17
17
### Fork & Clone the `` contributor-site ``
18
18
19
- Create a fork of the [ `` contributor-site `` ] ( https://github.com/kubernetes/contributor-site/tree/workshop ) repo.
19
+ Create a fork of the [ `` contributor-site `` ] ( https://github.com/kubernetes/contributor-site ) repo.
20
20
21
21
Clone your fork locally
22
22
23
23
### Checkout a branch off the workshop branch for your changes
24
24
25
25
``` bash
26
+ git remote add upstream
[email protected] :kubernetes/contributor-site.git
27
+ git remote set-url --push upstream no_push
28
+ git fetch upstream
26
29
git checkout workshop
27
-
28
- git checkout -b my-changes
30
+ git rebase upstream/workshop
31
+ git checkout < your feature branch >
29
32
```
30
33
31
34
### Run the site locally with your changes
You can’t perform that action at this time.
0 commit comments