File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
book/src/development/infrastructure Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ tree of the Clippy repository.
28
28
To find out if this step is necessary run
29
29
30
30
``` bash
31
- # Assumes that the local master branch is up-to-date
31
+ # Assumes that the local master branch of rust-lang/rust-clippy is up-to-date
32
32
$ git fetch upstream
33
33
$ git branch master --contains upstream/beta
34
34
```
@@ -56,7 +56,8 @@ determined.
56
56
57
57
``` bash
58
58
# Assuming the current directory corresponds to the Rust repository
59
- $ git checkout beta
59
+ $ git fetch upstream
60
+ $ git checkout upstream/beta
60
61
$ BETA_SHA=$( git log --oneline -- src/tools/clippy/ | grep -o " Merge commit '[a-f0-9]*' into .*" | head -1 | sed -e " s/Merge commit '\([a-f0-9]*\)' into .*/\1/g" )
61
62
```
62
63
You can’t perform that action at this time.
0 commit comments