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
git checkout -b name/issue-tracker/short-description main
68
68
```
69
69
70
70
Name can be initials or GitHub username. An example of this could be:
71
71
72
72
```text
73
-
git checkout -b irmerk/i75/readme-typos master
73
+
git checkout -b irmerk/i75/readme-typos main
74
74
```
75
75
76
76
* Create your patch commit, **including appropriate test cases**.
@@ -87,10 +87,10 @@ Before you submit your pull request consider the following guidelines:
87
87
88
88
Note: the optional commit `-a` command line option will automatically "add" and "rm" edited files.
89
89
90
-
* Before creating the Pull Request, ensure your branch sits on top of master (as opposed to branch off a branch). This ensures the reviewer will need only minimal effort to integrate your work by fast-fowarding master:
90
+
* Before creating the Pull Request, ensure your branch sits on top of main (as opposed to branch off a branch). This ensures the reviewer will need only minimal effort to integrate your work by fast-fowarding main:
91
91
92
92
```text
93
-
git rebase upstream/master
93
+
git rebase upstream/main
94
94
```
95
95
96
96
* Last step before creating the Pull Request, package and run all tests a last time:
@@ -105,7 +105,7 @@ Before you submit your pull request consider the following guidelines:
* In GitHub, send a pull request to `<REPOSITORY>:master` by following our [pull request conventions][developers.pullrequest]. This will trigger the check of the [Contributor License Agreement][contribute.cla] and the Travis integration.
108
+
* In GitHub, send a pull request to `<REPOSITORY>:main` by following our [pull request conventions][developers.pullrequest]. This will trigger the check of the [Contributor License Agreement][contribute.cla] and the Travis integration.
109
109
* If you find that the Travis integration has failed, look into the logs on Travis to find out if your changes caused test failures, the commit message was malformed, etc. If you find that the tests failed or times out for unrelated reasons, you can ping a team member so that the build can be restarted.
110
110
* If we suggest changes, then:
111
111
* Make the required updates.
@@ -116,7 +116,7 @@ Before you submit your pull request consider the following guidelines:
116
116
You can also amend the initial commits and force push them to the branch.
0 commit comments