Skip to content

Commit

Permalink
Rename default branch to main
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Mar 25, 2022
1 parent 0f2a602 commit 2d58da5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- gu-catalog.properties
pull_request:
branches:
- master
- main
paths-ignore:
- '**.md'
- 'docs/**'
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A [Squeak/Smalltalk][squeak] VM and Polyglot Programming Environment for the [Gr

```bash
$GRAALVM_HOME/bin/gu \
-C https://raw.githubusercontent.com/hpi-swa/trufflesqueak/master/gu-catalog.properties \
-C https://raw.githubusercontent.com/hpi-swa/trufflesqueak/main/gu-catalog.properties \
install smalltalk
```

Expand Down Expand Up @@ -78,7 +78,7 @@ Documentation is available in [`docs/`][ts_docs].

## Development

Active development is done in the [`master` branch][ts_master].
Active development is done in the [`main` branch][ts_main].
Please feel free to open a [pull request][pull_request] if you'd like to
contribute a bug-fix, documentation, or a new feature.
For more information, for example on how to build TruffleSqueak from source or
Expand Down Expand Up @@ -238,17 +238,17 @@ TruffleSqueak is released under the [MIT license][ts_license].
[sdr19_pdf]: https://www.hpi.uni-potsdam.de/hirschfeld/publications/media/PapeFelgentreffNiephausHirschfeld_2019_LetThemFailTowardsVmBuiltInBehaviorThatFallsBackToTheProgram_AcmDL.pdf
[squeak]: https://squeak.org
[squeak_downloads]: https://squeak.org/downloads/
[ts_docs]: https://github.com/hpi-swa/trufflesqueak/tree/master/docs
[ts_dev_docs]: https://github.com/hpi-swa/trufflesqueak/blob/master/docs/development.md
[ts_docs]: https://github.com/hpi-swa/trufflesqueak/tree/main/docs
[ts_dev_docs]: https://github.com/hpi-swa/trufflesqueak/blob/main/docs/development.md
[ts_gh_action]: https://github.com/hpi-swa/trufflesqueak/actions
[ts_gh_action_badge]: https://img.shields.io/github/workflow/status/hpi-swa/trufflesqueak/CI
[ts_issues]: https://github.com/hpi-swa/trufflesqueak/issues/new
[ts_latest]: https://github.com/hpi-swa/trufflesqueak/releases/latest
[ts_latest_badge]: https://img.shields.io/github/v/release/hpi-swa/trufflesqueak
[ts_launcher]: https://github.com/hpi-swa/trufflesqueak/blob/master/src/de.hpi.swa.trufflesqueak.launcher/src/de/hpi/swa/trufflesqueak/launcher/TruffleSqueakLauncher.java
[ts_license]: https://github.com/hpi-swa/trufflesqueak/blob/master/LICENSE
[ts_launcher]: https://github.com/hpi-swa/trufflesqueak/blob/main/src/de.hpi.swa.trufflesqueak.launcher/src/de/hpi/swa/trufflesqueak/launcher/TruffleSqueakLauncher.java
[ts_license]: https://github.com/hpi-swa/trufflesqueak/blob/main/LICENSE
[ts_license_badge]: https://img.shields.io/github/license/hpi-swa/trufflesqueak
[ts_logo]: https://user-images.githubusercontent.com/2368856/83736775-67f72280-a652-11ea-9785-35c2a688c0fc.png
[ts_master]: https://github.com/hpi-swa/trufflesqueak/tree/master
[ts_main]: https://github.com/hpi-swa/trufflesqueak/tree/main
[ts_twitter]: https://twitter.com/TruffleSqueak
[ts_twitter_badge]: https://img.shields.io/badge/twitter-%40TruffleSqueak-active
14 changes: 7 additions & 7 deletions docs/development.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Development

Active development is done in the [`master` branch][ts_master].
Active development is done in the [`main` branch][ts_main].
Please feel free to open a [pull request][pull_request] if you'd like to
contribute a bug-fix, documentation, or a new feature.
In addition to the [issues][ts_issues], the [`TODO`s][ts_todos] and the
Expand Down Expand Up @@ -123,12 +123,12 @@ For additional help, feel free to join the `#trufflesqueak` channel on the
[mx]: https://github.com/graalvm/mx
[pull_request]: https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request
[truffle_docs]: https://github.com/oracle/graal/tree/master/truffle/docs
[ts_ci]: https://github.com/hpi-swa/trufflesqueak/blob/master/.github/workflows/ci.yml
[ts_debug_utils]: https://github.com/hpi-swa/trufflesqueak/blob/master/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/util/DebugUtils.java
[ts_ci]: https://github.com/hpi-swa/trufflesqueak/blob/main/.github/workflows/ci.yml
[ts_debug_utils]: https://github.com/hpi-swa/trufflesqueak/blob/main/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/util/DebugUtils.java
[ts_gha]: https://github.com/hpi-swa/trufflesqueak/actions
[ts_issues]: https://github.com/hpi-swa/trufflesqueak/issues
[ts_launcher]: https://github.com/hpi-swa/trufflesqueak/blob/master/src/de.hpi.swa.trufflesqueak.launcher/src/de/hpi/swa/trufflesqueak/launcher/TruffleSqueakLauncher.java
[ts_log_utils]: https://github.com/hpi-swa/trufflesqueak/blob/master/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/util/LogUtils.java
[ts_master]: https://github.com/hpi-swa/trufflesqueak/tree/master
[ts_test_map]: https://github.com/hpi-swa/trufflesqueak/blob/master/src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/tests.properties
[ts_launcher]: https://github.com/hpi-swa/trufflesqueak/blob/main/src/de.hpi.swa.trufflesqueak.launcher/src/de/hpi/swa/trufflesqueak/launcher/TruffleSqueakLauncher.java
[ts_log_utils]: https://github.com/hpi-swa/trufflesqueak/blob/main/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/util/LogUtils.java
[ts_main]: https://github.com/hpi-swa/trufflesqueak/tree/main
[ts_test_map]: https://github.com/hpi-swa/trufflesqueak/blob/main/src/de.hpi.swa.trufflesqueak.test/src/de/hpi/swa/trufflesqueak/test/tests.properties
[ts_todos]: https://github.com/hpi-swa/trufflesqueak/search?q=%22TODO%22
2 changes: 1 addition & 1 deletion mx.trufflesqueak/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ set-up-dependencies() {
# Repository was shallow copied and Git did not fetch tags, so fetch the tag
# of the commit (if any) to make it available for other Git operations.
git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules \
--depth=1 origin "+$(git rev-parse HEAD):refs/remotes/origin/master"
--depth=1 origin "+$(git rev-parse HEAD):refs/remotes/origin/main"

set-up-mx
shallow-clone-graal
Expand Down

0 comments on commit 2d58da5

Please sign in to comment.