diff options
author | Paweł Zmarzły <[email protected]> | 2019-01-12 17:02:16 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-12 18:41:06 +0000 |
commit | ee80a92ed4245f1b6e2b11127c8636b63930073d (patch) | |
tree | 204b0a1ae4a248bec78a76a235b0a6a16942fe62 /editors | |
parent | 8033c81acc93a376fbbecae6962ce35a0021aa8a (diff) |
Do not recommend fetching whole repo for end users
`--depth 1` will make a shallow clone, of master branch only.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/README.md | 2 |
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 @@ | |||
1 | To install experimental VS Code plugin: | 1 | To 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 | ``` |