File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,17 @@ when you run `mdbook build`.
64
64
65
65
10 . Fix those links in the rustc-guide (by making a PR in the rustc-guide repo)
66
66
67
- 11 . Make a PR on the rust-lang/rust repo to update the rustc-guide git submodule in src/docs/rustc-guide
67
+ 11 . Make a PR on the rust-lang/rust repo to update the rustc-guide git submodule in src/docs/rustc-guide.
68
+ To make a PR, the following steps are useful.
69
+
70
+ ``` bash
71
+ # Assuming you already cloned the rust-lang/rust repo and you're in the correct directory
72
+ git submodule update --remote src/doc/rustc-guide
73
+ git add -u
74
+ git commit -m " Update rustc-guide"
75
+ ./x.py test -i --stage 1 src/doc/rustc-guide # This is optional and should succeed anyway
76
+ # Open a PR in rust-lang/rust
77
+ ```
68
78
69
79
12 . Wait for PR to merge
70
80
You can’t perform that action at this time.
0 commit comments