Skip to content

Commit 394c970

Browse files
authored
Update links to main (#8463)
I think this is what we all need to do to set upstream to main: ``` git branch -m master main git fetch upstream git branch -u upstream/main main git remote set-head upstream -a ``` (The default instructions on the repo assume we are cloning this repo but we are all probably working on our own forks)
1 parent 20ec028 commit 394c970

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ name and contact info to the [AUTHORS](AUTHORS) file.
4848
- `flutter run`
4949
3. Fork `https://github.com/flutter/flutter-intellij` into your own GitHub account.
5050
If you already have a fork and are now installing a development environment on a new machine,
51-
make sure you've updated your fork with the master branch
51+
make sure you've updated your fork with the main branch
5252
so that you don't use stale configuration options from long ago.
5353
4. `git clone https://github.com/<your_name_here>/flutter-intellij`
5454
5. `cd flutter-intellij`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <img src="https://raw.githubusercontent.com/dart-lang/site-shared/refs/heads/main/src/_assets/image/flutter/icon/64.png" alt="Flutter" width="26" height="26"/> Flutter Plugin for IntelliJ
22

33
[![Latest plugin version](https://img.shields.io/jetbrains/plugin/v/9212)](https://plugins.jetbrains.com/plugin/9212-flutter)
4-
[![Build Status](https://github.com/flutter/flutter-intellij/workflows/presubmit/badge.svg)](https://github.com/flutter/flutter-intellij/actions?query=branch%3Amaster+workflow%3Apresubmit)
4+
[![Build Status](https://github.com/flutter/flutter-intellij/workflows/presubmit/badge.svg)](https://github.com/flutter/flutter-intellij/actions?query=branch%3Amain+workflow%3Apresubmit)
55

66
An IntelliJ plugin for [Flutter](https://flutter.dev/) development. Flutter is a multi-platform
77
app SDK to help developers and designers build modern apps for iOS, Android and the web.
@@ -66,7 +66,7 @@ Please note the following known issues:
6666

6767
If you like getting new features as soon as they've been added to the code then you
6868
might want to try out the dev channel. It is updated daily with the latest contents
69-
from the "master" branch. It has minimal testing. Set up instructions are in the wiki's
69+
from the "main" branch. It has minimal testing. Set up instructions are in the wiki's
7070
[dev channel page](./docs/Dev-Channel.md).
7171

7272
## Flutter SDK compatibility

docs/Milestones.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
- we're using monthly [milestones](https://github.com/flutter/flutter-intellij/milestones)
44
- at the beginning of a milestone, we triage issues from the [Backlog](https://github.com/flutter/flutter-intellij/milestone/10) and [On Deck](https://github.com/flutter/flutter-intellij/milestone/11) milestones into the new milestone
55
- any work done or issues fixed should be assigned to the current milestone
6-
- at the end of the milestone, we run through the [testing plan](https://github.com/flutter/flutter-intellij/blob/master/docs/testing.md) and validate the candidate release
7-
- before releasing, we update the [changelog](https://github.com/flutter/flutter-intellij/blob/master/resources/META-INF/plugin.xml#L22) (based on the work tracking in the milestone)
6+
- at the end of the milestone, we run through the [testing plan](https://github.com/flutter/flutter-intellij/blob/main/docs/testing.md) and validate the candidate release
7+
- before releasing, we update the [changelog](https://github.com/flutter/flutter-intellij/blob/main/resources/META-INF/plugin.xml#L22) (based on the work tracking in the milestone)
88
- we then [build and release](../docs/building.md), and iterate

docs/Release-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
The following use cases should be tested on all new releases:
2-
[https://github.com/flutter/flutter-intellij/blob/master/testing.md](https://github.com/flutter/flutter-intellij/blob/master/docs/testing.md)
2+
[https://github.com/flutter/flutter-intellij/blob/main/testing.md](https://github.com/flutter/flutter-intellij/blob/main/docs/testing.md)

docs/Triaging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The [Inbox Query](https://github.com/flutter/flutter-intellij/issues?q=is%3Aissu
88
The inbox tracker should do the following initial triage:
99

1010
* Is the issue invalid? Close it, with a brief explanation.
11-
* Is the issue a general question, like _"How can I make a blinking button?"_ Close it and redirect to [discord](https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md); fodder for a redirecting response can be harvested from this [message](https://gist.github.com/pq/9c8293516b055b369e34e7410c52d2d8).
11+
* Is the issue a general question, like _"How can I make a blinking button?"_ Close it and redirect to [discord](https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md); fodder for a redirecting response can be harvested from this [message](https://gist.github.com/pq/9c8293516b055b369e34e7410c52d2d8).
1212
* Is the issue better filed against Flutter? Move it using the GitHub [issue transfer UI](https://docs.github.com/en/issues/tracking-your-work-with-issues/administering-issues/transferring-an-issue-to-another-repository#transferring-an-open-issue-to-another-repository).
1313
* Is the issue better filed against the Dart SDK? Consider creating a new issue on the [Dart SDK](https://github.com/dart-lang/sdk/issues) or ask the author to do so (and close the original issue).
1414
* Is the issue an obvious duplicate? Close it with a pointer to the duplicated issue.

src/io/flutter/run/daemon/DevToolsServerTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public void run(@NotNull ProgressIndicator progressIndicator) {
8989

9090
// This is only for development to check integration with a locally run DevTools server.
9191
// To enable, follow the instructions in:
92-
// https://github.com/flutter/flutter-intellij/blob/master/CONTRIBUTING.md#developing-with-local-devtools
92+
// https://github.com/flutter/flutter-intellij/blob/main/CONTRIBUTING.md#developing-with-local-devtools
9393
final String localDevToolsDir = Registry.stringValue(LOCAL_DEVTOOLS_DIR);
9494
if (!localDevToolsDir.isEmpty()) {
9595
LOG.info("Starting local DevTools server at: " + localDevToolsDir);

0 commit comments

Comments
 (0)