@@ -938,16 +938,16 @@ def create_merge(state, repo_cfg, branch, logger, git_cfg,
938
938
939
939
desc = 'Merge conflict'
940
940
comment = (
941
- 'This pull request and the master branch diverged in a way that cannot'
942
- ' be automatically merged. Please rebase on top of the latest master '
941
+ 'This pull request and the default branch diverged in a way that cannot'
942
+ ' be automatically merged. Please rebase on top of the latest default '
943
943
' branch, and let the reviewer approve again.\n '
944
944
'\n '
945
945
'<details><summary>How do I rebase?</summary>\n \n '
946
946
'Assuming `self` is your fork and `upstream` is this repository,'
947
947
' you can resolve the conflict following these steps:\n \n '
948
948
'1. `git checkout {branch}` *(switch to your branch)*\n '
949
- '2. `git fetch upstream master ` *(retrieve the latest master )*\n '
950
- '3. `git rebase upstream/master -p` *(rebase on top of it)*\n '
949
+ '2. `git fetch upstream HEAD ` *(retrieve the latest HEAD )*\n '
950
+ '3. `git rebase upstream/HEAD -p` *(rebase on top of it)*\n '
951
951
'4. Follow the on-screen instruction to resolve conflicts'
952
952
' (check `git status` if you got lost).\n '
953
953
'5. `git push self {branch} --force-with-lease` *(update this PR)*\n \n '
@@ -1335,7 +1335,7 @@ def start_build(state, repo_cfgs, buildbot_slots, logger, db, git_cfg):
1335
1335
continue
1336
1336
builders += ['status-' + key ]
1337
1337
# We have an optional fast path if the Travis test passed
1338
- # for a given commit and master is unchanged, we can do
1338
+ # for a given commit and main is unchanged, we can do
1339
1339
# a direct push.
1340
1340
if context == 'continuous-integration/travis-ci/push' :
1341
1341
found_travis_context = True
0 commit comments