Skip to content

rustc-dev-guide subtree update #141025

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
80758c3
add rdg push git config entry for git protocol pushers
tshepang May 1, 2025
6e966d7
avoid duplicating commands
tshepang May 6, 2025
046bfb3
Preparing for merge from rustc
invalid-email-address May 8, 2025
a3ab337
Merge from rustc
invalid-email-address May 8, 2025
e008338
Merge pull request #2374 from rust-lang/rustc-pull
tshepang May 8, 2025
17bcfa8
Fix minor typo in serialization.md
smanilov May 8, 2025
fc2e709
Merge pull request #2375 from smanilov/patch-4
tshepang May 8, 2025
b88f304
Remark test naming exception
smanilov May 8, 2025
ce5d417
Merge pull request #2323 from smanilov/patch-2
BoxyUwU May 8, 2025
f9f3bfb
Fix minor typo in installation.md
smanilov May 8, 2025
6f51c7f
Merge pull request #2377 from smanilov/patch-6
tshepang May 8, 2025
0ae3d15
Fix minor typo in rustdoc-internals.md
smanilov May 8, 2025
52192da
Merge pull request #2376 from smanilov/patch-5
tshepang May 9, 2025
74e31f3
Merge pull request #2369 from rust-lang/tshepang-patch-1
tshepang May 10, 2025
fb302dc
link to chapter referred to
tshepang May 10, 2025
e2bca3f
use the right case
tshepang May 10, 2025
bd65d46
make more clear what is meant
tshepang May 10, 2025
c4ac528
make more readable
tshepang May 10, 2025
939879b
sembr
tshepang May 10, 2025
fe0f4bd
is a question
tshepang May 10, 2025
759cb0b
fix broken links
tshepang May 10, 2025
be6b3ef
reduce clutter when reading source
tshepang May 10, 2025
e7f37e6
sembr
tshepang May 10, 2025
730ba82
last updated a year ago
tshepang May 10, 2025
2a37e41
add missing word
tshepang May 10, 2025
abde396
no point versioning these
tshepang May 10, 2025
5d63f34
bump edition
tshepang May 10, 2025
23a1537
"cargo fmt"
tshepang May 10, 2025
9c1a619
we are a collective
tshepang May 10, 2025
11dffe0
noise
tshepang May 10, 2025
718dfbb
Remove obsolete reference to `unsized_tuple_coercion`
Zalathar May 12, 2025
fcc0aa9
Merge pull request #2382 from Zalathar/no-tuple-unsize
JohnTitor May 12, 2025
80ec061
Remove n.b. about parser refactoring
smanilov May 9, 2025
23f7a47
Merge pull request #2378 from smanilov/patch-7
jieyouxu May 12, 2025
4ed4c1b
remove dangling references
tshepang May 12, 2025
c8ebe12
Merge pull request #2383 from rust-lang/tshepang-unused
tshepang May 14, 2025
e0dc04f
Merge pull request #2380 from rust-lang/tshepang-crate-cleaning
tshepang May 14, 2025
6b2a483
Merge pull request #2379 from rust-lang/tshepang-which-chapter
tshepang May 14, 2025
cebce69
Merge pull request #2373 from rust-lang/tshepang-patch-2
tshepang May 14, 2025
6149b32
avoid upstream pull conflict
tshepang May 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/doc/rustc-dev-guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,16 @@ Older versions of `josh-proxy` may not round trip commits losslessly so it is im
3) Push the branch to your fork and create a PR into `rustc-dev-guide`

### Push changes from this repository into `rust-lang/rust`

NOTE: If you use Git protocol to push to your fork of `rust-lang/rust`,
ensure that you have this entry in your Git config,
else the 2 steps that follow would prompt for a username and password:

```
[url "[email protected]:"]
insteadOf = "https://github.com/"
```

1) Run the push command to create a branch named `<branch-name>` in a `rustc` fork under the `<gh-username>` account
```
cargo run --manifest-path josh-sync/Cargo.toml rustc-push <branch-name> <gh-username>
Expand Down
Loading
Loading