-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
rustfmt subtree update #117066
rustfmt subtree update #117066
Commits on Jun 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for dc7dc3e - Browse repository at this point
Copy the full SHA dc7dc3eView commit details
Commits on Jun 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ed3e96e - Browse repository at this point
Copy the full SHA ed3e96eView commit details
Commits on Jun 21, 2023
-
Rollup merge of rust-lang#112790 - WaffleLapkin:syntactically, r=Nils…
…trieb Syntactically accept `become` expressions (explicit tail calls experiment) This adds `ast::ExprKind::Become`, implements parsing and properly gates the feature. cc `@scottmcm`
Configuration menu - View commit details
-
Copy full SHA for 80bf3ea - Browse repository at this point
Copy the full SHA 80bf3eaView commit details
Commits on Jul 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 78331ee - Browse repository at this point
Copy the full SHA 78331eeView commit details
Commits on Jul 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9a86da9 - Browse repository at this point
Copy the full SHA 9a86da9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 326af2b - Browse repository at this point
Copy the full SHA 326af2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bb87a1b - Browse repository at this point
Copy the full SHA bb87a1bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c3cf61 - Browse repository at this point
Copy the full SHA 3c3cf61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8850854 - Browse repository at this point
Copy the full SHA 8850854View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9a0992 - Browse repository at this point
Copy the full SHA d9a0992View commit details
Commits on Jul 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f2bad9c - Browse repository at this point
Copy the full SHA f2bad9cView commit details
Commits on Jul 6, 2023
-
always emit consider
AutoImplCandidates
for them if they don't also…… have a `ProjectionCandidate`
Configuration menu - View commit details
-
Copy full SHA for d0762f0 - Browse repository at this point
Copy the full SHA d0762f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ed7f74 - Browse repository at this point
Copy the full SHA 5ed7f74View commit details
Commits on Jul 12, 2023
-
Add
LD_LIBRARY_PATH
incheck_diff.sh
There were some upstream changes made a while back that requires this to be set when building rustfmt from source like we do in the `check_diff.sh` script. See issue 5675 for more details.
Configuration menu - View commit details
-
Copy full SHA for 89500fa - Browse repository at this point
Copy the full SHA 89500faView commit details -
Improve error discovery in
check_diff.sh
The `set -e` option is used to immediately exit if any command exits with a non zero exit status. This will help us catch errors in the script, for example, needing the `LD_LIBRARY_PATH` to be set.
Configuration menu - View commit details
-
Copy full SHA for e5c212b - Browse repository at this point
Copy the full SHA e5c212bView commit details -
use the
branch_name
as the default for the optional commit hashThere was an issue with the script when passing optional rustfmt configs without specifying a commit hash. Because these optional values are passed via positional arguments the configs ($4) would be used in place of the commit hash ($3). Now that we set a default value for the optional commit hash we avoid this problem.
Configuration menu - View commit details
-
Copy full SHA for d698bf4 - Browse repository at this point
Copy the full SHA d698bf4View commit details
Commits on Jul 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e9dfb6f - Browse repository at this point
Copy the full SHA e9dfb6fView commit details -
Use matches!() macro to improve readability (rust-lang#5830)
* Use matches!() macro to improve readability 1. Use `matches!()` macro in `is_line_comment` and `is_block_comment` to improve readability. 2. Very sightly improve the wording of the doc comment for these two functions. * Update wording on doc comment on is_line_comment()
Configuration menu - View commit details
-
Copy full SHA for e0e633e - Browse repository at this point
Copy the full SHA e0e633eView commit details
Commits on Jul 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1842967 - Browse repository at this point
Copy the full SHA 1842967View commit details -
Prevent ICE when formatting an empty-ish macro arm (rust-lang#5833)
Fixes 5730 Previously rustfmt was attempting to slice a string with an invalid range (`start > end`), leading to the ICE. When formatting a macro transcriber snippet consisting of a lone semicolon, the snippet was being formatted into the empty string, leading the enclosing `fn main() {\n}` added by `format_code_block` to be formatted into `fn main() {}`. However, rustfmt was assuming that the enclosing function string's length had been left unchanged. This was leading to an invalid range being constructed when attempting to trim off the enclosing function. The fix is to just clamp the range's start to be less than or equal to the range's end, since if `end < start` there's nothing to iterate over anyway.
Configuration menu - View commit details
-
Copy full SHA for b944a32 - Browse repository at this point
Copy the full SHA b944a32View commit details -
On nightly, dump ICE backtraces to disk
Implement rust-lang/compiler-team#578. When an ICE is encountered on nightly releases, the new rustc panic handler will also write the contents of the backtrace to disk. If any `delay_span_bug`s are encountered, their backtrace is also added to the file. The platform and rustc version will also be collected.
Configuration menu - View commit details
-
Copy full SHA for 6013a80 - Browse repository at this point
Copy the full SHA 6013a80View commit details -
doc: fix instruction about running Rustfmt from source code (rust-lan…
…g#5838) Update docs to include an example of running `rustfmt` built from src, and show how users can set the `RUSTFMT` environment variable to test `cargo-fmt` using the `rustfmt` they built from src.
Configuration menu - View commit details
-
Copy full SHA for c6d39a2 - Browse repository at this point
Copy the full SHA c6d39a2View commit details
Commits on Jul 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2db13f4 - Browse repository at this point
Copy the full SHA 2db13f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9ae746 - Browse repository at this point
Copy the full SHA a9ae746View commit details
Commits on Jul 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a3dfd82 - Browse repository at this point
Copy the full SHA a3dfd82View commit details
Commits on Jul 26, 2023
-
Make
x test src/tools/rustfmt --bless
format rustfmt with the fresh……ly built in-tree version
Configuration menu - View commit details
-
Copy full SHA for c0ee8f5 - Browse repository at this point
Copy the full SHA c0ee8f5View commit details -
Unite bless environment variables under
RUSTC_BLESS
Currently, Clippy, Miri, Rustfmt, and rustc all use an environment variable to indicate that output should be blessed, but they use different variable names. In order to improve consistency, this patch applies the following changes: - Emit `RUSTC_BLESS` within `prepare_cargo_test` so it is always available - Change usage of `MIRI_BLESS` in the Miri subtree to use `RUSTC_BLESS` - Change usage of `BLESS` in the Clippy subtree to `RUSTC_BLESS` - Change usage of `BLESS` in the Rustfmt subtree to `RUSTC_BLESS` - Adjust the blessable test in `rustc_errors` to use this same convention - Update documentation where applicable Any tools that uses `RUSTC_BLESS` should check that it is set to any value other than `"0"`.
Configuration menu - View commit details
-
Copy full SHA for 08fd164 - Browse repository at this point
Copy the full SHA 08fd164View commit details
Commits on Jul 27, 2023
-
Avoid
into_trees
usage in rustfmt.Token tree cloning is only needed in one place.
Configuration menu - View commit details
-
Copy full SHA for e60a9e2 - Browse repository at this point
Copy the full SHA e60a9e2View commit details
Commits on Jul 28, 2023
-
Handle
dyn*
syntax when rewritingast::TyKind::TraitObject
Resolves 5542 Prior to rust-lang#101212 the `ast::TraitObjectSyntax` enum only had two variants `Dyn` and `None`. The PR that introduced the `dyn*` syntax added a new variant `DynStar`, but did not update the formatting rules to account for the new variant. Now the new `DynStar` variant is properly handled and is no longer removed by rustfmt.
Configuration menu - View commit details
-
Copy full SHA for cdfa2f8 - Browse repository at this point
Copy the full SHA cdfa2f8View commit details -
Auto merge of rust-lang#114115 - nnethercote:less-token-tree-cloning,…
… r=petrochenkov Less `TokenTree` cloning `TokenTreeCursor` has this comment on it: ``` // FIXME: Many uses of this can be replaced with by-reference iterator to avoid clones. ``` This PR completes that FIXME. It doesn't have much perf effect, but at least we now know that. r? `@petrochenkov`
Configuration menu - View commit details
-
Copy full SHA for 1f369f8 - Browse repository at this point
Copy the full SHA 1f369f8View commit details -
Auto merge of rust-lang#113312 - Ddystopia:auto-trait-fun, r=lcnr
discard default auto trait impls if explicit ones exist (rebase of rust-lang#85048) Rebase of rust-lang#85048
Configuration menu - View commit details
-
Copy full SHA for 4eeecae - Browse repository at this point
Copy the full SHA 4eeecaeView commit details
Commits on Jul 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f122a33 - Browse repository at this point
Copy the full SHA f122a33View commit details
Commits on Aug 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a72613b - Browse repository at this point
Copy the full SHA a72613bView commit details
Commits on Aug 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e42bc9e - Browse repository at this point
Copy the full SHA e42bc9eView commit details -
It's the same as `Delimiter`, minus the `Invisible` variant. I'm generally in favour of using types to make impossible states unrepresentable, but this one feels very low-value, and the conversions between the two types are annoying and confusing. Look at the change in `src/tools/rustfmt/src/expr.rs` for an example: the old code converted from `MacDelimiter` to `Delimiter` and back again, for no good reason. This suggests the author was confused about the types.
Configuration menu - View commit details
-
Copy full SHA for d165d4a - Browse repository at this point
Copy the full SHA d165d4aView commit details
Commits on Aug 3, 2023
-
Rollup merge of rust-lang#114300 - MU001999:fix/turbofish-pat, r=este…
…bank Suggests turbofish in patterns Fixes rust-lang#114112 r? ```@estebank```
Configuration menu - View commit details
-
Copy full SHA for 2c8cc96 - Browse repository at this point
Copy the full SHA 2c8cc96View commit details
Commits on Aug 4, 2023
-
Improve spans for indexing expressions
Indexing is similar to method calls in having an arbitrary left-hand-side and then something on the right, which is the main part of the expression. Method calls already have a span for that right part, but indexing does not. This means that long method chains that use indexing have really bad spans, especially when the indexing panics and that span in coverted into a panic location. This does the same thing as method calls for the AST and HIR, storing an extra span which is then put into the `fn_span` field in THIR.
Configuration menu - View commit details
-
Copy full SHA for e83a7ca - Browse repository at this point
Copy the full SHA e83a7caView commit details -
Auto merge of rust-lang#114104 - oli-obk:syn2, r=compiler-errors
Lots of tiny incremental simplifications of `EmitterWriter` internals ignore the first commit, it's rust-lang#114088 squashed and rebased, but it's needed to use to use `derive_setters`, as they need a newer `syn` version. Then this PR starts out with removing many arguments that are almost always defaulted to `None` or `false` and replace them with builder methods that can set these fields in the few cases that want to set them. After that it's one commit after the other that removes or merges things until everything becomes some very simple trait objects
Configuration menu - View commit details
-
Copy full SHA for e6c4606 - Browse repository at this point
Copy the full SHA e6c4606View commit details -
Rollup merge of rust-lang#114434 - Nilstrieb:indexing-spans, r=est31
Improve spans for indexing expressions fixes rust-lang#114388 Indexing is similar to method calls in having an arbitrary left-hand-side and then something on the right, which is the main part of the expression. Method calls already have a span for that right part, but indexing does not. This means that long method chains that use indexing have really bad spans, especially when the indexing panics and that span in coverted into a panic location. This does the same thing as method calls for the AST and HIR, storing an extra span which is then put into the `fn_span` field in THIR. r? compiler-errors
Configuration menu - View commit details
-
Copy full SHA for af72b88 - Browse repository at this point
Copy the full SHA af72b88View commit details -
Auto merge of rust-lang#114481 - matthiaskrgr:rollup-58pczpl, r=matth…
…iaskrgr Rollup of 9 pull requests Successful merges: - rust-lang#113945 (Fix wrong span for trait selection failure error reporting) - rust-lang#114351 ([rustc_span][perf] Remove unnecessary string joins and allocs.) - rust-lang#114418 (bump parking_lot to 0.12) - rust-lang#114434 (Improve spans for indexing expressions) - rust-lang#114450 (Fix ICE failed to get layout for ReferencesError) - rust-lang#114461 (Fix unwrap on None) - rust-lang#114462 (interpret: add mplace_to_ref helper method) - rust-lang#114472 (Reword `confusable_idents` lint) - rust-lang#114477 (Account for `Rc` and `Arc` when suggesting to clone) r? `@ghost` `@rustbot` modify labels: rollup
Configuration menu - View commit details
-
Copy full SHA for 00b60cd - Browse repository at this point
Copy the full SHA 00b60cdView commit details
Commits on Aug 12, 2023
-
improve the --file-lines help (rust-lang#5846)
* improve the file-lines example * fix help order
Configuration menu - View commit details
-
Copy full SHA for 36af403 - Browse repository at this point
Copy the full SHA 36af403View commit details
Commits on Aug 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9f58224 - Browse repository at this point
Copy the full SHA 9f58224View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d4c143 - Browse repository at this point
Copy the full SHA 0d4c143View commit details -
Fix building rustfmt with
--features generic-simd
Bumping bytecount from `0.6.2` -> `0.6.3` allows rustfmt to properly build when using the `generic-simd` feature.
Configuration menu - View commit details
-
Copy full SHA for 177ef66 - Browse repository at this point
Copy the full SHA 177ef66View commit details -
Build nightly rustfmt using
--all-features
in CIPreviously we were only building rustfmt with default features in CI. We recently received a report that rustfmt was unable to compile with the `generic-simd` feature, which is not enabled by default. To prevent a similar situation in the future we'll start build nightly rustfmt with all features enabled.
Configuration menu - View commit details
-
Copy full SHA for 641d4f5 - Browse repository at this point
Copy the full SHA 641d4f5View commit details -
include block label length when calculating pat_shape of a match arm
Previously we alwasy assumed the match arm pattern would have `shape.width` - 5 characters of space to work with. Now if we're formatting a block expression with a label we'll take the label into account.
Configuration menu - View commit details
-
Copy full SHA for d8aeaba - Browse repository at this point
Copy the full SHA d8aeabaView commit details -
Configuration menu - View commit details
-
Copy full SHA for e86c2ba - Browse repository at this point
Copy the full SHA e86c2baView commit details -
Inline format arguments for easier reading (rust-lang#5881)
* Inline format arguments for easier reading Code becomes shorter and often easier to read when format args are inlined. Note that I skipped the mixed cases to make it more straightforward (could be done separatelly). Also, there are two FIXME comments - for some reasons inlining makes format string exceed 100 char line width and crash. ``` cargo clippy --workspace --allow-dirty --fix --benches --tests --bins -- -A clippy::all -W clippy::uninlined_format_args ``` * address feedback
Configuration menu - View commit details
-
Copy full SHA for b069aac - Browse repository at this point
Copy the full SHA b069aacView commit details
Commits on Aug 14, 2023
-
refactor ABI formatting (rust-lang#5845)
fixes 5701 Whenever we see an `extern "Rust"` on a function, we don't strip it from the function. If there's any future desire to have rustfmt remove an explicit "Rust" ABI, as it historically did prior to this change, then we can consider updating the rustfmt config surface to support that scenario
Configuration menu - View commit details
-
Copy full SHA for 4b01e62 - Browse repository at this point
Copy the full SHA 4b01e62View commit details
Commits on Aug 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a57d57b - Browse repository at this point
Copy the full SHA a57d57bView commit details
Commits on Aug 17, 2023
-
Prevent ICE when formatting item-only
vec!{}
(rust-lang#5879)* Prevent ICE when formatting item-only `vec!{}` Fixes 5735 Attempting to format invocations of macros which are considered "forced bracket macros" (currently only `vec!`), but are invoked with braces instead of brackets, and contain only items in their token trees, currently triggers an ICE in rustfmt. This is because the function that handles formatting macro invocations containing only items, `rewrite_macro_with_items`, assumes that the forced delimiter style of the macro being formatted is the same as the delimiter style in the macro's source text when attempting to locate the span after the macro's opening delimiter. This leads to the construction of an invalid span, triggering the ICE. The fix here is to pass the old delimiter style to `rewrite_macro_with_items` as well, so that it can successfully locate the span.
Configuration menu - View commit details
-
Copy full SHA for e480739 - Browse repository at this point
Copy the full SHA e480739View commit details
Commits on Aug 18, 2023
-
Use
OR
operator in Cargo.tomllicense
fieldThe use of `/` is deprecated, per the Cargo reference: https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields
Configuration menu - View commit details
-
Copy full SHA for 16db2a4 - Browse repository at this point
Copy the full SHA 16db2a4View commit details
Commits on Aug 24, 2023
-
Parse unnamed fields and anonymous structs or unions
Anonymous structs or unions are only allowed in struct field definitions. Co-authored-by: carbotaniuman <41451839+carbotaniuman@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for cef3117 - Browse repository at this point
Copy the full SHA cef3117View commit details
Commits on Aug 26, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0439486 - Browse repository at this point
Copy the full SHA 0439486View commit details
Commits on Aug 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for df2471b - Browse repository at this point
Copy the full SHA df2471bView commit details
Commits on Aug 29, 2023
-
Don't treat lines starting with
.
or)
as ordered markdown lists (r……ust-lang#5839) Fixes 5835 Ordered markdown lists start with 0-9 digits followed by a `.` or a `)`. Now, rustfmt ensure that the `.` or `)` is only preceded by numeric characters before deciding that it's reached an `ItemizedBlock`
Configuration menu - View commit details
-
Copy full SHA for f89cd3c - Browse repository at this point
Copy the full SHA f89cd3cView commit details
Commits on Aug 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9c25fbf - Browse repository at this point
Copy the full SHA 9c25fbfView commit details
Commits on Aug 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1340fc4 - Browse repository at this point
Copy the full SHA 1340fc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7c57f8 - Browse repository at this point
Copy the full SHA c7c57f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b636723 - Browse repository at this point
Copy the full SHA b636723View commit details
Commits on Sep 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 96e583f - Browse repository at this point
Copy the full SHA 96e583fView commit details
Commits on Sep 9, 2023
-
Fix checking if newline is needed before
else
in let-else statementFixes 5901 Take leading attributes and comments into consideration when determining if we need to wrap the `else` keyword onto the next line.
Configuration menu - View commit details
-
Copy full SHA for 262feb3 - Browse repository at this point
Copy the full SHA 262feb3View commit details
Commits on Sep 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b8e3cb0 - Browse repository at this point
Copy the full SHA b8e3cb0View commit details -
Prefer light_rewrite_comment if it is not a doccomment (rust-lang#5536)
Fixes 5533, 5568, 5907 Prevent `format_code_in_doc_comments=true` from affecting how non-doc comments are formatted. --------- Co-authored-by: Yacin Tmimi <yacintmimi@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 18737dd - Browse repository at this point
Copy the full SHA 18737ddView commit details
Commits on Sep 12, 2023
-
feat(cargo): Style --help like cargo nightly (rust-lang#5908)
* chore: Update clap * refactor(cargo): Update style of derive * feat(cargo): Style help like cargo nightly
Configuration menu - View commit details
-
Copy full SHA for da7f678 - Browse repository at this point
Copy the full SHA da7f678View commit details
Commits on Sep 20, 2023
-
Bugfix/comment duplication (rust-lang#5913)
* Fix rust-lang#5871 * Only idempotence test is necessary * Update src/expr.rs Co-authored-by: Caleb Cartwright <calebcartwright@users.noreply.github.com> --------- Co-authored-by: Caleb Cartwright <calebcartwright@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a1fabbf - Browse repository at this point
Copy the full SHA a1fabbfView commit details
Commits on Oct 2, 2023
-
Signed-off-by: cui fliter <imcusg@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d7669b4 - Browse repository at this point
Copy the full SHA d7669b4View commit details
Commits on Oct 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8ac561a - Browse repository at this point
Copy the full SHA 8ac561aView commit details
Commits on Oct 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 268716b - Browse repository at this point
Copy the full SHA 268716bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2707103 - Browse repository at this point
Copy the full SHA 2707103View commit details
Commits on Oct 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 457dc79 - Browse repository at this point
Copy the full SHA 457dc79View commit details -
implement sinlge line let-chain rules
for now, let-chains can only be formatted on a single line if the chain consits of 2 expressions where the first is an identifier proceeded by any number of unary operators and the second is a let-expr.
Configuration menu - View commit details
-
Copy full SHA for 547577f - Browse repository at this point
Copy the full SHA 547577fView commit details
Commits on Oct 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0f73981 - Browse repository at this point
Copy the full SHA 0f73981View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b5ef37 - Browse repository at this point
Copy the full SHA 4b5ef37View commit details
Commits on Oct 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f35f252 - Browse repository at this point
Copy the full SHA f35f252View commit details -
Configuration menu - View commit details
-
Copy full SHA for 746bf48 - Browse repository at this point
Copy the full SHA 746bf48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 75d8497 - Browse repository at this point
Copy the full SHA 75d8497View commit details -
Configuration menu - View commit details
-
Copy full SHA for c2515df - Browse repository at this point
Copy the full SHA c2515dfView commit details -
Merge pull request rust-lang#5944 from calebcartwright/subtree-sync-2…
…023-10-22 sync subtree
Configuration menu - View commit details
-
Copy full SHA for 0bb2acf - Browse repository at this point
Copy the full SHA 0bb2acfView commit details
Commits on Oct 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 75c7d1d - Browse repository at this point
Copy the full SHA 75c7d1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for ff3ce6b - Browse repository at this point
Copy the full SHA ff3ce6bView commit details -
bumping from v1.6.0 -> v1.7.0 since we added support for let-chains
Configuration menu - View commit details
-
Copy full SHA for 81fe905 - Browse repository at this point
Copy the full SHA 81fe905View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7650a75 - Browse repository at this point
Copy the full SHA 7650a75View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35400e8 - Browse repository at this point
Copy the full SHA 35400e8View commit details