-
Notifications
You must be signed in to change notification settings - Fork 968
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace references to 'master' with 'main' (#1045)
Resolves #1039
- Loading branch information
Showing
7 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,23 +112,23 @@ $ git remote show origin | |
* remote origin | ||
Fetch URL: [email protected]:<username>/draco.git | ||
Push URL: [email protected]:<username>/draco.git | ||
HEAD branch: master | ||
HEAD branch: main | ||
Remote branch: | ||
master tracked | ||
main tracked | ||
Local branch configured for 'git pull': | ||
master merges with remote master | ||
main merges with remote main | ||
Local ref configured for 'git push': | ||
master pushes to master (up to date) | ||
main pushes to main (up to date) | ||
$ git remote show upstream | ||
* remote upstream | ||
Fetch URL: [email protected]:google/draco.git | ||
Push URL: [email protected]:google/draco.git | ||
HEAD branch: master | ||
HEAD branch: main | ||
Remote branch: | ||
master tracked | ||
main tracked | ||
Local ref configured for 'git push': | ||
master pushes to master (up to date) | ||
main pushes to main (up to date) | ||
~~~~~ | ||
|
||
[**See this page**][1] for a longer discussion of managing remotes and general | ||
|
@@ -242,13 +242,13 @@ Next, visit the `upstream` [homepage]. If you are logged-in, GitHub will be | |
aware of your recently pushed branch, and offer an in-page widget for submitting | ||
a pull request for the project maintainers to consider. | ||
|
||
Once your pull request is merged into upstream's master branch, you may | ||
Once your pull request is merged into upstream's main branch, you may | ||
synchronize your clone (and remote `origin`) as follows: | ||
|
||
~~~~~ | ||
git co master | ||
git co main | ||
git fetch upstream | ||
git merge upstream/master | ||
git merge upstream/main | ||
git push origin | ||
~~~~~ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters