rustfmt subtree sync procedureNote that rustfmt has not migrated to josh yet, so the git subtree sync is somewhat involved. This procedure is mostly adapted from the clippy subtree sync process at https://doc.rust-lang.org/stable/clippy/development/infrastructure/sync.html, but adapted for rustfmt. We are keeping a separate copy of the instructions for rustfmt in case clippy moves off of git subtree in the mean time (and also slightly adjusted to be rustfmt-specific.
[!NOTE]
Note that AFAIK, eventually both
clippyandrustfmtwould like to move to thejosh-sync workflow, just thatrustfmtis blocked on actually doing a bidirectional sync first, whileclippyis sorting out some issues related to tags and git history (due to usage ofgit subtree).
The git-subtree tooling still has a bug that prevents it from working properly with the rust-lang/rust repository. This means that you need to build and use a patched version of git-subtree.
[!NOTE]
The patched version of
git-subtreeis the sources corresponding to the stale PR https://github.com/gitgitgadget/git/pull/493.
On Linux, place git-subtree under /usr/lib/git-core (make sure to keep a backup copy of the ‘standard’ git-subtree), and make sure it has proper permissions:
$ sudo cp --backup /path/to/patched/git-subtree.sh /usr/lib/git-core/git-subtree $ sudo chmod --reference=/usr/lib/git-core/git-subtree~ /usr/lib/git-core/git-subtree $ sudo chown --reference=/usr/lib/git-core/git-subtree~ /usr/lib/git-core/git-subtree
[!NOTE]
Running
git subtree pushfor the first time requires building a cache, which involves going through the entire history ofrustfmtonce. You likely will need to increase the stack limit via$ ulimit -s 60000
[!NOTE]
The following steps assume that you have configured the
rustfmtremote asupstream, i.e.$ git remote add upstream git@github.com:rust-lang/rustfmt
rust-lang/rust to rustfmt[!WARNING]
For this subtree-push direction, all commands described must be run within the
rust-lang/rustcheckout.
rust-lang/rustEither acquire a clone of rust-lang/rust, or if you already have a checkout, make sure the checkout is up-to-date via git fetch.
You can fetch the commit hash of the latest available nightly by inspecting rustup check output.
rust-copy of rustfmt to your rustfmt fork[!WARNING]
Make sure to either use a fresh branch, e.g.
subtree-push, or delete the branch beforehand. Changes cannot be fast forwarded and you have to run this command again.
$ git subtree push -P src/tools/rustfmt /path/to/rustfmt/checkout subtree-push
Most of the time, you will need to create a merge commit in the rustfmt repository. Note that this must be done in the subtree repo (i.e. rustfmt repo) and not in the rust-copy of rustfmt.
Assuming the upstream remote is the rust-lang/rust remote:
$ git fetch upstream $ git switch subtree-push $ git merge upstream/main --no-ff
[!WARNING]
You may have to manually resolve certain merge conflicts. Pay extra attention when resolving them, since it's easy to accidentally resolve the conflict in incorrect ways.
[!TIP]
Subtree syncs are one of the rare occasions where a merge commit is allowed in a PR.
rustfmt repositoryUsing the same latest nightly date (that you can obtain by inspecting rustup check output), manually edit rust-toolchain:
[toolchain] -channel = "nightly-2025-04-02" +channel = "nightly-$LATEST_NIGHTLY_DATE" components = ["llvm-tools", "rustc-dev"]
Substituting $LATEST_NIGHTLY_DATE with the latest nightly date.
Create a separate commit dedicated to making the rust-toolchain change. You can use the following commit message template.
rust-toolchain bump commit message templatechore: bump rustfmt toolchain to nightly-$LATEST_NIGHTLY_DATE Bumping the toolchain version as part of a git subtree push. current toolchain (nightly-$CURRENT_NIGHTLY_DATE): - $CURRENT_NIGHTLY_VERSION-nightly ($CURRENT_NIGHTLY_HASH $CURRENT_NIGHTLY_DATE) latest toolchain (nightly-$LATEST_NIGHTLY_DATE): - $LATEST_NIGHTLY_VERSION-nightly ($LATEST_NIGHTLY_HASH $LATEST_NIGHTLY_DATE)
Substituting the placeholders with the right information.
[!TIP]
Example bump commit message:
chore: bump rustfmt toolchain to nightly-2025-10-07 Bumping the toolchain version as part of a git subtree push. current toolchain (nightly-2025-04-02): - 1.88.0-nightly (e2014e876 2025-04-01) latest toolchain (nightly-2025-10-07): - 1.92.0-nightly (f6aa851db 2025-10-07)
rustfmtAnd wait for the sync PR to be merged. The rustfmt maintainers will run Diff Check against the PR to catch any unexpected formatting changes. Once Diff Check failures are investigated and are resolved, the PR can then be merged.
For the PR:
subtree-push nightly-$LATEST_NIGHTLY_DATE for consistency with previous subtree-pushes.[!TIP]
Example subtree-push PR title and description:
PR title:
subtree-push nightly-2025-10-07PR description:
Bumping the toolchain version as part of a git subtree push. current toolchain (nightly-2025-04-02): - 1.88.0-nightly (e2014e876 2025-04-01) latest toolchain (nightly-2025-10-07): - 1.92.0-nightly (f6aa851db 2025-10-07)
[!WARNING]
Make sure to immediately follow-up with a subtree-pull direction, syncing
rustfmttorust-lang/rust. We need the {subtree-push, subtree-pull} directions to be performed in lock-step, to minimize any changes in between that makes the logistics more complex.
rustfmt to rust-lang/rust[!WARNING]
For this subtree-pull direction, all commands must also be performed within the
rust-lang/rustcheckout.
main of rust-lang/rust is checked outrustfmt main to the rust-copy of rustfmt$ git switch -c rustfmt-subtree-update $ git subtree pull -P src/tools/rustfmt /path/to/rustfmt/checkout main
rust-lang/rustUse the PR title
rustfmtsubtree update
so that triagebot will not warn against the PR containing a merge commit, and makes it easy for rustfmt maintainers to discover.
Back link to the rustfmt subtree-push PR as helpful context.