Skip to content

Commit d49ae3c

Browse files
committed
Use default to instead of master to reference the repository HEAD
1 parent d9dc9f2 commit d49ae3c

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ help address your problem, evaluate changes, and guide you through your pull
88
requests.
99

1010
By contributing to *fpm*, you certify that you own or are allowed to share the
11-
content of your contribution under the
12-
[fpm license](https://github.com/fortran-lang/fpm/blob/master/LICENSE).
11+
content of your contribution under the [fpm license](LICENSE).
1312

1413
* [Style](#style)
1514
* [Reporting a bug](#reporting-a-bug)
@@ -35,7 +34,7 @@ Before opening a bug report:
3534
1. Check if the issue has already been reported
3635
([issues](https://github.com/fortran-lang/fpm/issues)).
3736
2. Check if it is still an issue or it has been fixed?
38-
Try to reproduce it with the latest version from the master branch.
37+
Try to reproduce it with the latest version from the default branch.
3938
3. Isolate the problem and create a minimal test case.
4039

4140
A good bug report should include all information needed to reproduce the bug.

manifest-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ To use a specific upstream branch declare the *branch* name with
403403

404404
```toml
405405
[dependencies]
406-
toml-f = { git = "https://github.com/toml-f/toml-f", branch = "master" }
406+
toml-f = { git = "https://github.com/toml-f/toml-f", branch = "main" }
407407
```
408408

409409
Alternatively, reference tags by using the *tag* entry

src/fpm/cmd/new.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ subroutine cmd_new(settings)
347347
&' # git repository. ',&
348348
&' # ',&
349349
&' # You can be specific about which version of a dependency you would ',&
350-
&' # like. By default the latest master master branch is used. You can ',&
350+
&' # like. By default the latest default branch is used. You can ',&
351351
&' # optionally specify a branch, a tag or a commit value. ',&
352352
&' # ',&
353353
&' # So here are several alternates for specifying a remote dependency (you ',&

0 commit comments

Comments
 (0)