We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2620a8 commit 5784b6cCopy full SHA for 5784b6c
src/getting-started.md
@@ -97,7 +97,16 @@ You can just do a normal git clone:
97
git clone https://github.com/rust-lang/rust.git
98
```
99
100
-You don't need to clone the submodules at this time.
+You don't need to clone the submodules at this time. But if you want to, you
101
+can do the following:
102
+
103
+```sh
104
+# first time
105
+git submodule update --init --recursive
106
107
+# subsequent times (to pull new commits)
108
+git submodule update
109
+```
110
111
**Pro tip**: if you contribute often, you may want to look at the git worktrees
112
tip in [this chapter][suggested].
0 commit comments