aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Zmarzły <[email protected]>2019-01-12 17:02:16 +0000
committerAleksey Kladov <[email protected]>2019-01-12 18:41:06 +0000
commitee80a92ed4245f1b6e2b11127c8636b63930073d (patch)
tree204b0a1ae4a248bec78a76a235b0a6a16942fe62
parent8033c81acc93a376fbbecae6962ce35a0021aa8a (diff)
Do not recommend fetching whole repo for end users
`--depth 1` will make a shallow clone, of master branch only.
-rw-r--r--editors/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/README.md b/editors/README.md
index a63ced725..5b09750e6 100644
--- a/editors/README.md
+++ b/editors/README.md
@@ -1,7 +1,7 @@
1To install experimental VS Code plugin: 1To install experimental VS Code plugin:
2 2
3``` 3```
4$ git clone https://github.com/rust-analyzer/rust-analyzer.git 4$ git clone https://github.com/rust-analyzer/rust-analyzer.git --depth 1
5$ cd rust-analyzer 5$ cd rust-analyzer
6$ cargo install-code 6$ cargo install-code
7``` 7```