Skip to content

Commit 8ae477a

Browse files
authored
Build: Rename master to main across the repository
The default branch was updated, this updates the remaining occurrences in code & comments. Closes gh-4838
1 parent 025da4d commit 8ae477a

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ Change directory to the newly created dir jquery/
8585
$ cd jquery
8686
```
8787

88-
Add the jQuery master as a remote. I label mine "upstream"
88+
Add the jQuery main as a remote. I label mine "upstream"
8989

9090
```bash
9191
$ git remote add upstream git://github.com/jquery/jquery.git
9292
```
9393

94-
Get in the habit of pulling in the "upstream" master to stay up to date as jQuery receives new commits
94+
Get in the habit of pulling in the "upstream" main to stay up to date as jQuery receives new commits
9595

9696
```bash
97-
$ git pull upstream master
97+
$ git pull upstream main
9898
```
9999

100100
Run the build script

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ As the source code is handled by the Git version control system, it's useful to
216216
If you want to purge your working directory back to the status of upstream, the following commands can be used (remember everything you've worked on is gone after these):
217217

218218
```bash
219-
git reset --hard upstream/master
219+
git reset --hard upstream/main
220220
git clean -fdx
221221
```
222222

@@ -274,7 +274,7 @@ throws( block, [expected], [message] );
274274
```
275275

276276

277-
Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js))
277+
Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/main/test/data/testinit.js))
278278
------------------------------
279279

280280
### Returns an array of elements with the given IDs ###

build/release/dist.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ module.exports = function( Release, files, complete ) {
3131
Release.exec( `git clone ${ distRemote } ${ Release.dir.dist }`,
3232
"Error cloning repo." );
3333

34-
// Distribution always works on master
34+
// Distribution always works on main
3535
Release.chdir( Release.dir.dist );
36-
Release.exec( "git checkout master", "Error checking out branch." );
36+
Release.exec( "git checkout main", "Error checking out branch." );
3737
console.log();
3838
}
3939

@@ -140,8 +140,8 @@ module.exports = function( Release, files, complete ) {
140140
Release.exec(
141141
`git push ${
142142
Release.isTest ? " --dry-run" : ""
143-
} ${ distRemote } master --tags`,
144-
"Error pushing master and tags to git repo."
143+
} ${ distRemote } main --tags`,
144+
"Error pushing main and tags to git repo."
145145
);
146146

147147
// Set repo for npm publish

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"homepage": "https://jquery.com",
88
"author": {
99
"name": "OpenJS Foundation and other contributors",
10-
"url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt"
10+
"url": "https://github.com/jquery/jquery/blob/main/AUTHORS.txt"
1111
},
1212
"repository": {
1313
"type": "git",

test/unit/offset.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ QUnit.test( "disconnected element", function( assert ) {
6363

6464
var result = jQuery( document.createElement( "div" ) ).offset();
6565

66-
// These tests are solely for master/compat consistency
66+
// These tests are solely for main/compat consistency
6767
// Retrieving offset on disconnected/hidden elements is not officially
6868
// valid input, but will return zeros for back-compat
6969
assert.equal( result.top, 0, "Retrieving offset on disconnected elements returns zeros (gh-2310)" );
@@ -80,7 +80,7 @@ QUnit.test( "hidden (display: none) element", function( assert ) {
8080

8181
node.remove();
8282

83-
// These tests are solely for master/compat consistency
83+
// These tests are solely for main/compat consistency
8484
// Retrieving offset on disconnected/hidden elements is not officially
8585
// valid input, but will return zeros for back-compat
8686
assert.equal( result.top, 0, "Retrieving offset on hidden elements returns zeros (gh-2310)" );
@@ -454,7 +454,7 @@ testIframe( "scroll", "offset/scroll.html", function( assert, $, win ) {
454454
assert.equal( $( "#scroll-1-1" ).offset().top, 11, "jQuery('#scroll-1-1').offset().top" );
455455
assert.equal( $( "#scroll-1-1" ).offset().left, 11, "jQuery('#scroll-1-1').offset().left" );
456456

457-
// These tests are solely for master/compat consistency
457+
// These tests are solely for main/compat consistency
458458
// Retrieving offset on disconnected/hidden elements is not officially
459459
// valid input, but will return zeros for back-compat
460460
assert.equal( $( "#hidden" ).offset().top, 0, "Hidden elements do not subtract scroll" );

0 commit comments

Comments
 (0)