You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unless the issue specifically mentions a branch, please create your feature branch from the **main** branch.
95
95
96
96
For example:
97
97
98
-
```
98
+
```bash
99
99
# Make sure you have the most recent changes to main
100
100
git checkout main
101
101
git pull
@@ -177,7 +177,7 @@ have the right to contribute the code you are submitting to the project.
177
177
178
178
You sign-off by adding the following to your commit messages:
179
179
180
-
```
180
+
```bash
181
181
Author: Your Name <your.name@example.com>
182
182
Date: Thu Feb 2 11:41:15 2018 -0800
183
183
@@ -191,12 +191,16 @@ be rejected by the automated DCO check.
191
191
192
192
Git has a `-s` command line option to do this automatically:
193
193
194
-
git commit -s -m 'This is my commit message'
194
+
```
195
+
git commit -s -m 'This is my commit message'
196
+
```
195
197
196
198
If you forgot to do this and have not yet pushed your changes to the remote
197
199
repository, you can amend your commit with the sign-off by running
198
200
199
-
git commit --amend -s
201
+
```
202
+
git commit --amend -s
203
+
```
200
204
201
205
## The life of a pull request
202
206
@@ -416,7 +420,7 @@ site/docs.
416
420
417
421
or use only Hugo
418
422
419
-
1. Download and install [Hugo 0.115.4](https://github.com/gohugoio/hugo/releases/tag/v0.115.4) extended version.
423
+
1. Download and install [Hugo 0.117.0](https://github.com/gohugoio/hugo/releases/tag/v0.117.0) extended version.
420
424
2.`cd docs`
421
425
3.`hugo server --watch`
422
426
@@ -652,7 +656,7 @@ When you realize that you may need to make a breaking change, discuss it with a
652
656
Here are some examples of breaking changes:
653
657
654
658
* The schema of porter.yaml changed.
655
-
* The schema of Porter's [file formats](https://getporter.org/reference/file-formats) changed.
659
+
* The schema of Porter's [file formats](https://getporter.org/references/file-formats) changed.
656
660
* The schema of Porter's [config file](https://getporter.org/configuration/#config-file) changed.
657
661
* Flags or behavior of a CLI command changed, such as removing a flag or adding a validation that can result in a hard error, preventing the command from running.
658
662
@@ -680,5 +684,5 @@ Our [version strategy] explains how we version the project, when you should expe
680
684
breaking changes in a release, and the process for the v1 release.
0 commit comments