Skip to content

Commit c0a2d98

Browse files
authored
Merge pull request #423 from awvwgk/default-branch
Use default instead of master to reference the repository HEAD
2 parents 7704c00 + d49ae3c commit c0a2d98

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ To use a specific upstream branch declare the *branch* name with
429429

430430
```toml
431431
[dependencies]
432-
toml-f = { git = "https://github.com/toml-f/toml-f", branch = "master" }
432+
toml-f = { git = "https://github.com/toml-f/toml-f", branch = "main" }
433433
```
434434

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

src/fpm/cmd/new.f90

Lines changed: 1 addition & 1 deletion
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)