We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99a731d commit b2660deCopy full SHA for b2660de
book/src/development/infrastructure/release.md
@@ -28,7 +28,7 @@ tree of the Clippy repository.
28
To find out if this step is necessary run
29
30
```bash
31
-# Assumes that the local master branch is up-to-date
+# Assumes that the local master branch of rust-lang/rust-clippy is up-to-date
32
$ git fetch upstream
33
$ git branch master --contains upstream/beta
34
```
@@ -56,7 +56,8 @@ determined.
56
57
58
# Assuming the current directory corresponds to the Rust repository
59
-$ git checkout beta
+$ git fetch upstream
60
+$ git checkout upstream/beta
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")
62
63
0 commit comments