Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ jobs:
group: rust-analysis-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: ci/install-dependencies.sh
- run: ci/run-rust-checks.sh
sparse:
Expand Down
6 changes: 6 additions & 0 deletions Documentation/RelNotes/2.54.0.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,12 @@ Fixes since v2.53
conflicts.
(merge c0ce43376b ng/add-files-to-cache-wo-rename later to maint).

* Doc mark-up update for entries in the glossary with bulleted lists.
(merge a65cbd87ea jk/doc-markup-sub-list-indentation later to maint).

* CI dependency updates.
(merge 4bdb17e3a8 jc/ci-github-actions-use-checkout-v5 later to maint).

* Other code cleanup, docfix, build fix, etc.
(merge d79fff4a11 jk/remote-tracking-ref-leakfix later to maint).
(merge 7a747f972d dd/t5403-modernise later to maint).
Expand Down
11 changes: 5 additions & 6 deletions Documentation/git-am.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,14 @@ OPTIONS

-m::
--message-id::
Pass the `-m` flag to linkgit:git-mailinfo[1], so that the
`Message-ID` header is added as a trailer (see
linkgit:git-interpret-trailers[1]). The `am.messageid`
configuration variable can be used to specify the default
behaviour.
Pass the `-m` flag to linkgit:git-mailinfo[1],
so that the `Message-ID` header is added to the commit message.
The `am.messageid` configuration variable can be used to specify
the default behaviour.

--no-message-id::
Do not add the Message-ID header to the commit message.
`no-message-id` is useful to override `am.messageid`.
`--no-message-id` is useful to override `am.messageid`.

-q::
--quiet::
Expand Down
6 changes: 6 additions & 0 deletions Documentation/glossary-content.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ full pathname may have special meaning:
matches "`a/b`", "`a/x/b`", "`a/x/y/b`" and so on.

- Other consecutive asterisks are considered invalid.

+
Glob magic is incompatible with literal magic.

Expand All @@ -452,6 +453,7 @@ these forms:

- "`!ATTR`" requires that the attribute `ATTR` be
unspecified.

+
Note that when matching against a tree object, attributes are still
obtained from working tree, not from the given tree object.
Expand Down Expand Up @@ -560,14 +562,17 @@ The ref namespace is hierarchical.
Ref names must either start with `refs/` or be located in the root of
the hierarchy. For the latter, their name must follow these rules:
+
--
- The name consists of only upper-case characters or underscores.

- The name ends with "`_HEAD`" or is equal to "`HEAD`".
--
+
There are some irregular refs in the root of the hierarchy that do not
match these rules. The following list is exhaustive and shall not be
extended in the future:
+
--
- `AUTO_MERGE`

- `BISECT_EXPECTED_REV`
Expand All @@ -577,6 +582,7 @@ extended in the future:
- `NOTES_MERGE_REF`

- `MERGE_AUTOSTASH`
--
+
Different subhierarchies are used for different purposes. For example,
the `refs/heads/` hierarchy is used to represent local branches whereas
Expand Down