diff options
| author | marisa <mokou@fastmail.com> | 2021-06-29 12:46:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-29 12:46:28 +0200 |
| commit | c8c1b87a01f4b8d9beef11808b735fcab8793cb2 (patch) | |
| tree | a5ee74cc2dab4d36d87b7dedcb920e48e739595a /README.md | |
| parent | de6c45ad244528562889138757f3c8c7f089bbec (diff) | |
| parent | 3a4433d5a2961e3f3e613bd67459579fbc6277fa (diff) | |
Merge pull request #786 from kolbma/git-clone-release-tag
docs: Faster git clone command
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -57,12 +57,12 @@ When you get a permission denied message then you have to exclude the directory ## Manually -Basically: Clone the repository, checkout to the latest tag, run `cargo install`. +Basically: Clone the repository at the latest tag, run `cargo install`. ```bash -git clone https://github.com/rust-lang/rustlings +# find out the latest version at https://github.com/rust-lang/rustlings/releases/latest (on edit 4.4.0) +git clone -b 4.4.0 --depth 1 https://github.com/rust-lang/rustlings cd rustlings -git checkout tags/4.4.0 # or whatever the latest version is (find out at https://github.com/rust-lang/rustlings/releases/latest) cargo install --force --path . ``` |
