Skip to content

Commit af9789e

Browse files
authored
Merge pull request #575 from AllenInstitute/feature/switch-to-main-as-default-branch
Switch default branch to main
2 parents ea7c6c9 + 92fc763 commit af9789e

File tree

4 files changed

+6
-66
lines changed

4 files changed

+6
-66
lines changed

Packages/MIES/MIES_Menu.ipf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Function OpenAboutDialog()
118118
Notebook $nb text="\r"
119119
Notebook $nb text="License: "
120120
NotebookAction/W=$nb name=Action0, title="2-clause BSD license plus a third clause", ignoreErrors=1
121-
NotebookAction/W=$nb name=Action0, commands="BrowseURL(\"https://github.com/AllenInstitute/MIES/blob/master/LICENSE\")"
121+
NotebookAction/W=$nb name=Action0, commands="BrowseURL(\"https://github.com/AllenInstitute/MIES/blob/main/LICENSE\")"
122122
Notebook $nb text="\r"
123123
Notebook $nb text="\r"
124124
Notebook $nb text="Sponsors: "

Packages/doc/developers.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Developer
44
Getting MIES
55
------------
66

7-
Latest development version from master branch
7+
Latest development version from main branch
88
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99

1010
- ``git clone https://github.com/AllenInstitute/MIES``
@@ -159,7 +159,7 @@ data acquisition is blocked.
159159
Cutting a new release
160160
~~~~~~~~~~~~~~~~~~~~~
161161

162-
- Checkout the master branch
162+
- Checkout the main branch
163163
- Check that MIES compiles
164164
- Check that doxygen/sphinx/breathe returns neither errors nor warnings
165165
- Paste the contents of ``Packages\doc\releasenotes_template.rst`` to
@@ -253,7 +253,7 @@ perform the followings steps:
253253
Documentation building
254254
~~~~~~~~~~~~~~~~~~~~~~
255255

256-
The documentation for the master branch is automatically built and
256+
The documentation for the main branch is automatically built and
257257
uploaded by `this <http://bamboo.corp.alleninstitute.org/browse/MIES-CM>`__ bamboo job.
258258

259259
Setting up a continous integration server (Linux)

tools/deploy_documentation.sh

Lines changed: 0 additions & 60 deletions
This file was deleted.

tools/upload-github-release-asset.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ fi
5454
branch=$(git rev-parse --abbrev-ref HEAD)
5555

5656
case "$branch" in
57-
master)
57+
main)
5858
tag=latest
5959

6060
cd $public_mies_repo
6161

6262
git stash || true
6363
git fetch --all
64-
git tag --force ${tag} origin/master
64+
git tag --force ${tag} origin/main
6565
git push --force origin ${tag}
6666

6767
cd $top_level

0 commit comments

Comments
 (0)