Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0520099

Browse files
y21jyn514
authored andcommittedApr 6, 2023
fix line length
1 parent b141161 commit 0520099

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎src/building/how-to-build-and-run.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ cd rust
2828

2929
Due to the size of the repository, cloning on a slower internet connection can take a long time.
3030
To sidestep this, you can use the `--depth N` option with the `git clone` command.
31-
This instructs `git` to perform a "shallow clone", cloning the repository but truncating it to the last `N` commits.
31+
This instructs `git` to perform a "shallow clone", cloning the repository but truncating it to
32+
the last `N` commits.
3233

33-
Passing `--depth 1` tells `git` to clone the repository but truncate the history to the latest commit
34-
that is on the `master` branch, which is usually fine for browsing the source code or building the compiler.
34+
Passing `--depth 1` tells `git` to clone the repository but truncate the history to the latest
35+
commit that is on the `master` branch, which is usually fine for browsing the source code or
36+
building the compiler.
3537

3638
```bash
3739
git clone --depth 1 https://github.com/rust-lang/rust.git

0 commit comments

Comments
 (0)
Please sign in to comment.