Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/docs/contributing/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@ Compiling and Running
Start by cloning the repository:

```bash
$ git clone --recursive --single-branch https://github.com/lampepfl/dotty.git
$ git clone --recurse-submodules --single-branch https://github.com/lampepfl/dotty.git
$ cd dotty
$ sbt managedSources # Needed for IDE import to succeed
```

Pass `--single-branch` to clone only the master branch, otherwise cloning will be *much* slower (details in [issue #3236](https://github.com/lampepfl/dotty/issues/3236)).

The repository uses submodules, which may need updating/initializing using `git submodule update --init`. Starting `sbt` will alert you if this is needed.

Dotty provides a standard sbt build: compiling, running and starting a repl can
all be done from within sbt:

Expand Down