* [PATCH] doc: fix the max number of git show-branches shown
@ 2024-07-03 22:36 wonda-tea-coffee via GitGitGadget
2024-07-06 6:27 ` Jeff King
2024-07-06 9:53 ` [PATCH v2] " wonda-tea-coffee via GitGitGadget
0 siblings, 2 replies; 12+ messages in thread
From: wonda-tea-coffee via GitGitGadget @ 2024-07-03 22:36 UTC (permalink / raw)
To: git; +Cc: wonda-tea-coffee, wonda-tea-coffee
From: wonda-tea-coffee <lagrange.resolvent@gmail.com>
Contrary to the number listed in the current document,
only 26 are actually shown.
Signed-off-by: wonda-tea-coffee <lagrange.resolvent@gmail.com>
---
doc: fix the max number of git show-branches shown
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1757%2Fwonda-tea-coffee%2Fupdate-git-show-branch-description-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1757/wonda-tea-coffee/update-git-show-branch-description-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1757
Documentation/git-show-branch.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
index c771c897707..bc31d8b6d33 100644
--- a/Documentation/git-show-branch.txt
+++ b/Documentation/git-show-branch.txt
@@ -22,7 +22,7 @@ Shows the commit ancestry graph starting from the commits named
with <rev>s or <glob>s (or all refs under refs/heads
and/or refs/tags) semi-visually.
-It cannot show more than 29 branches and commits at a time.
+It cannot show more than 26 branches and commits at a time.
It uses `showbranch.default` multi-valued configuration items if
no <rev> or <glob> is given on the command line.
base-commit: 06e570c0dfb2a2deb64d217db78e2ec21672f558
--
gitgitgadget
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH] doc: fix the max number of git show-branches shown
2024-07-03 22:36 [PATCH] doc: fix the max number of git show-branches shown wonda-tea-coffee via GitGitGadget
@ 2024-07-06 6:27 ` Jeff King
2024-07-06 18:21 ` Junio C Hamano
2024-07-06 9:53 ` [PATCH v2] " wonda-tea-coffee via GitGitGadget
1 sibling, 1 reply; 12+ messages in thread
From: Jeff King @ 2024-07-06 6:27 UTC (permalink / raw)
To: wonda-tea-coffee via GitGitGadget; +Cc: git, wonda-tea-coffee
On Wed, Jul 03, 2024 at 10:36:25PM +0000, wonda-tea-coffee via GitGitGadget wrote:
> From: wonda-tea-coffee <lagrange.resolvent@gmail.com>
>
> Contrary to the number listed in the current document,
> only 26 are actually shown.
The commit message would be a good place to explain how we know "26" is
the right number. ;)
It looks like this is computed at build-time based on FLAG_BITS:
#define REV_SHIFT 2
#define MAX_REVS (FLAG_BITS - REV_SHIFT) /* should not exceed bits_per_int - REV_SHIFT */
That's defined in object.h. Looking at "git log -GFLAG_BITS object.h",
it seems it was 27, then 29, and now 28. So I'm not sure how it was ever
29, but 26 makes sense now.
It is unfortunate that it _could_ change again without us realizing the
documentation is now stale. But I don't think it's something we'd touch
very often, so this is probably OK in practice (and as the TODO above
those lines says, ultimately this should use a commit-slab to handle an
arbitrary number of refs).
> Signed-off-by: wonda-tea-coffee <lagrange.resolvent@gmail.com>
We generally want a real name here, since this is certifying that you
agree to the DCO. See:
https://git-scm.com/docs/SubmittingPatches#sign-off
-Peff
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] doc: fix the max number of git show-branches shown
2024-07-06 6:27 ` Jeff King
@ 2024-07-06 18:21 ` Junio C Hamano
0 siblings, 0 replies; 12+ messages in thread
From: Junio C Hamano @ 2024-07-06 18:21 UTC (permalink / raw)
To: Jeff King; +Cc: wonda-tea-coffee via GitGitGadget, git, wonda-tea-coffee
Jeff King <peff@peff.net> writes:
> It looks like this is computed at build-time based on FLAG_BITS:
>
> #define REV_SHIFT 2
> #define MAX_REVS (FLAG_BITS - REV_SHIFT) /* should not exceed bits_per_int - REV_SHIFT */
>
> That's defined in object.h. Looking at "git log -GFLAG_BITS object.h",
> it seems it was 27, then 29, and now 28. So I'm not sure how it was ever
> 29, but 26 makes sense now.
Originally it was bits-per-word minus REV_SHIFT -- back then we
didn't even have FLAG_BITS.
> It is unfortunate that it _could_ change again without us realizing the
> documentation is now stale. But I don't think it's something we'd touch
> very often, so this is probably OK in practice (and as the TODO above
> those lines says, ultimately this should use a commit-slab to handle an
> arbitrary number of refs).
Yup, I was hoping I can craft a response that tricks somebody
(preferrably those who are not too experienced, as it should be too
easy for some of the experienced ones) into tackling that TODO item,
but you responded before I did ;-).
>> Signed-off-by: wonda-tea-coffee <lagrange.resolvent@gmail.com>
>
> We generally want a real name here, since this is certifying that you
> agree to the DCO. See:
>
> https://git-scm.com/docs/SubmittingPatches#sign-off
Another rule is that the name used to sign-off and the name of the
author of the patch on "From: " line must match.
Thanks. I was getting tired of the only person to point it out to
new contributors.
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2] doc: fix the max number of git show-branches shown
2024-07-03 22:36 [PATCH] doc: fix the max number of git show-branches shown wonda-tea-coffee via GitGitGadget
2024-07-06 6:27 ` Jeff King
@ 2024-07-06 9:53 ` wonda-tea-coffee via GitGitGadget
2024-07-06 23:14 ` Jeff King
2024-07-07 2:19 ` [PATCH v3] " Rikita Ishikawa via GitGitGadget
1 sibling, 2 replies; 12+ messages in thread
From: wonda-tea-coffee via GitGitGadget @ 2024-07-06 9:53 UTC (permalink / raw)
To: git; +Cc: Jeff King, wonda-tea-coffee, wonda-tea-coffee
From: wonda-tea-coffee <lagrange.resolvent@gmail.com>
The number to be displayed is calculated by the
following defined in object.h.
```
#define REV_SHIFT 2
#define MAX_REVS (FLAG_BITS - REV_SHIFT)
```
FLAG_BITS is currently 28, so 26 is the correct
number.
Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
---
doc: fix the max number of git show-branches shown
Changes since v1:
* Explain in the commit message why "26" is the correct number.
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1757%2Fwonda-tea-coffee%2Fupdate-git-show-branch-description-v2
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1757/wonda-tea-coffee/update-git-show-branch-description-v2
Pull-Request: https://github.com/gitgitgadget/git/pull/1757
Range-diff vs v1:
1: b809d610a36 ! 1: 6fc335807d2 doc: fix the max number of git show-branches shown
@@ Metadata
## Commit message ##
doc: fix the max number of git show-branches shown
- Contrary to the number listed in the current document,
- only 26 are actually shown.
+ The number to be displayed is calculated by the
+ following defined in object.h.
- Signed-off-by: wonda-tea-coffee <lagrange.resolvent@gmail.com>
+ ```
+ #define REV_SHIFT 2
+ #define MAX_REVS (FLAG_BITS - REV_SHIFT)
+ ```
+
+ FLAG_BITS is currently 28, so 26 is the correct
+ number.
+
+ Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
## Documentation/git-show-branch.txt ##
@@ Documentation/git-show-branch.txt: Shows the commit ancestry graph starting from the commits named
Documentation/git-show-branch.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
index c771c897707..bc31d8b6d33 100644
--- a/Documentation/git-show-branch.txt
+++ b/Documentation/git-show-branch.txt
@@ -22,7 +22,7 @@ Shows the commit ancestry graph starting from the commits named
with <rev>s or <glob>s (or all refs under refs/heads
and/or refs/tags) semi-visually.
-It cannot show more than 29 branches and commits at a time.
+It cannot show more than 26 branches and commits at a time.
It uses `showbranch.default` multi-valued configuration items if
no <rev> or <glob> is given on the command line.
base-commit: 06e570c0dfb2a2deb64d217db78e2ec21672f558
--
gitgitgadget
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH v2] doc: fix the max number of git show-branches shown
2024-07-06 9:53 ` [PATCH v2] " wonda-tea-coffee via GitGitGadget
@ 2024-07-06 23:14 ` Jeff King
2024-07-07 2:19 ` [PATCH v3] " Rikita Ishikawa via GitGitGadget
1 sibling, 0 replies; 12+ messages in thread
From: Jeff King @ 2024-07-06 23:14 UTC (permalink / raw)
To: wonda-tea-coffee via GitGitGadget; +Cc: git, wonda-tea-coffee
On Sat, Jul 06, 2024 at 09:53:18AM +0000, wonda-tea-coffee via GitGitGadget wrote:
> From: wonda-tea-coffee <lagrange.resolvent@gmail.com>
>
> The number to be displayed is calculated by the
> following defined in object.h.
>
> ```
> #define REV_SHIFT 2
> #define MAX_REVS (FLAG_BITS - REV_SHIFT)
> ```
>
> FLAG_BITS is currently 28, so 26 is the correct
> number.
>
> Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
Thanks, this version looks good to me. As Junio noted, we'd generally
want the "From" to match the Sign-off (where the former is coming from
the author name in the commit). You can either re-send, or if you give
the OK, he might just fix it up as he applies.
-Peff
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v3] doc: fix the max number of git show-branches shown
2024-07-06 9:53 ` [PATCH v2] " wonda-tea-coffee via GitGitGadget
2024-07-06 23:14 ` Jeff King
@ 2024-07-07 2:19 ` Rikita Ishikawa via GitGitGadget
2024-07-07 2:28 ` [PATCH v4] " Rikita Ishikawa via GitGitGadget
1 sibling, 1 reply; 12+ messages in thread
From: Rikita Ishikawa via GitGitGadget @ 2024-07-07 2:19 UTC (permalink / raw)
To: git; +Cc: Jeff King, Rikita Ishikawa, wonda-tea-coffee
From: wonda-tea-coffee <lagrange.resolvent@gmail.com>
The number to be displayed is calculated by the
following defined in object.h.
```
#define REV_SHIFT 2
#define MAX_REVS (FLAG_BITS - REV_SHIFT)
```
FLAG_BITS is currently 28, so 26 is the correct
number.
Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
---
doc: fix the max number of git show-branches shown
Changes since v1:
* Explain in the commit message why "26" is the correct number.
* No change (to rename GitHub and re-send).
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1757%2Fwonda-tea-coffee%2Fupdate-git-show-branch-description-v3
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1757/wonda-tea-coffee/update-git-show-branch-description-v3
Pull-Request: https://github.com/gitgitgadget/git/pull/1757
Range-diff vs v2:
1: 6fc335807d2 = 1: c1e236d843c doc: fix the max number of git show-branches shown
Documentation/git-show-branch.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
index c771c897707..bc31d8b6d33 100644
--- a/Documentation/git-show-branch.txt
+++ b/Documentation/git-show-branch.txt
@@ -22,7 +22,7 @@ Shows the commit ancestry graph starting from the commits named
with <rev>s or <glob>s (or all refs under refs/heads
and/or refs/tags) semi-visually.
-It cannot show more than 29 branches and commits at a time.
+It cannot show more than 26 branches and commits at a time.
It uses `showbranch.default` multi-valued configuration items if
no <rev> or <glob> is given on the command line.
base-commit: 06e570c0dfb2a2deb64d217db78e2ec21672f558
--
gitgitgadget
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4] doc: fix the max number of git show-branches shown
2024-07-07 2:19 ` [PATCH v3] " Rikita Ishikawa via GitGitGadget
@ 2024-07-07 2:28 ` Rikita Ishikawa via GitGitGadget
2024-07-07 2:30 ` rikita ishikawa
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Rikita Ishikawa via GitGitGadget @ 2024-07-07 2:28 UTC (permalink / raw)
To: git; +Cc: Jeff King, Rikita Ishikawa, Rikita Ishikawa
From: Rikita Ishikawa <lagrange.resolvent@gmail.com>
The number to be displayed is calculated by the
following defined in object.h.
```
#define REV_SHIFT 2
#define MAX_REVS (FLAG_BITS - REV_SHIFT)
```
FLAG_BITS is currently 28, so 26 is the correct
number.
Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
---
doc: fix the max number of git show-branches shown
Changes since v1:
* Explain in the commit message why "26" is the correct number.
* No change (to rename GitHub and re-send).
* Change the author of the commit.
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1757%2Fwonda-tea-coffee%2Fupdate-git-show-branch-description-v4
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1757/wonda-tea-coffee/update-git-show-branch-description-v4
Pull-Request: https://github.com/gitgitgadget/git/pull/1757
Range-diff vs v3:
1: c1e236d843c ! 1: 76ab2f17015 doc: fix the max number of git show-branches shown
@@
## Metadata ##
-Author: wonda-tea-coffee <lagrange.resolvent@gmail.com>
+Author: Rikita Ishikawa <lagrange.resolvent@gmail.com>
## Commit message ##
doc: fix the max number of git show-branches shown
Documentation/git-show-branch.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
index c771c897707..bc31d8b6d33 100644
--- a/Documentation/git-show-branch.txt
+++ b/Documentation/git-show-branch.txt
@@ -22,7 +22,7 @@ Shows the commit ancestry graph starting from the commits named
with <rev>s or <glob>s (or all refs under refs/heads
and/or refs/tags) semi-visually.
-It cannot show more than 29 branches and commits at a time.
+It cannot show more than 26 branches and commits at a time.
It uses `showbranch.default` multi-valued configuration items if
no <rev> or <glob> is given on the command line.
base-commit: 06e570c0dfb2a2deb64d217db78e2ec21672f558
--
gitgitgadget
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH v4] doc: fix the max number of git show-branches shown
2024-07-07 2:28 ` [PATCH v4] " Rikita Ishikawa via GitGitGadget
@ 2024-07-07 2:30 ` rikita ishikawa
2024-07-08 8:52 ` Jeff King
2024-07-08 13:07 ` [PATCH v5] " Rikita Ishikawa via GitGitGadget
2 siblings, 0 replies; 12+ messages in thread
From: rikita ishikawa @ 2024-07-07 2:30 UTC (permalink / raw)
To: Rikita Ishikawa via GitGitGadget; +Cc: git, Jeff King
Sorry for sending in consecutive messages.
I changed `From:`.
Thank you for following us often.
2024年7月7日(日) 11:28 Rikita Ishikawa via GitGitGadget <gitgitgadget@gmail.com>:
>
> From: Rikita Ishikawa <lagrange.resolvent@gmail.com>
>
> The number to be displayed is calculated by the
> following defined in object.h.
>
> ```
> #define REV_SHIFT 2
> #define MAX_REVS (FLAG_BITS - REV_SHIFT)
> ```
>
> FLAG_BITS is currently 28, so 26 is the correct
> number.
>
> Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
> ---
> doc: fix the max number of git show-branches shown
>
> Changes since v1:
>
> * Explain in the commit message why "26" is the correct number.
> * No change (to rename GitHub and re-send).
> * Change the author of the commit.
>
> Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1757%2Fwonda-tea-coffee%2Fupdate-git-show-branch-description-v4
> Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1757/wonda-tea-coffee/update-git-show-branch-description-v4
> Pull-Request: https://github.com/gitgitgadget/git/pull/1757
>
> Range-diff vs v3:
>
> 1: c1e236d843c ! 1: 76ab2f17015 doc: fix the max number of git show-branches shown
> @@
> ## Metadata ##
> -Author: wonda-tea-coffee <lagrange.resolvent@gmail.com>
> +Author: Rikita Ishikawa <lagrange.resolvent@gmail.com>
>
> ## Commit message ##
> doc: fix the max number of git show-branches shown
>
>
> Documentation/git-show-branch.txt | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
> index c771c897707..bc31d8b6d33 100644
> --- a/Documentation/git-show-branch.txt
> +++ b/Documentation/git-show-branch.txt
> @@ -22,7 +22,7 @@ Shows the commit ancestry graph starting from the commits named
> with <rev>s or <glob>s (or all refs under refs/heads
> and/or refs/tags) semi-visually.
>
> -It cannot show more than 29 branches and commits at a time.
> +It cannot show more than 26 branches and commits at a time.
>
> It uses `showbranch.default` multi-valued configuration items if
> no <rev> or <glob> is given on the command line.
>
> base-commit: 06e570c0dfb2a2deb64d217db78e2ec21672f558
> --
> gitgitgadget
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4] doc: fix the max number of git show-branches shown
2024-07-07 2:28 ` [PATCH v4] " Rikita Ishikawa via GitGitGadget
2024-07-07 2:30 ` rikita ishikawa
@ 2024-07-08 8:52 ` Jeff King
2024-07-08 13:01 ` rikita ishikawa
2024-07-08 13:07 ` [PATCH v5] " Rikita Ishikawa via GitGitGadget
2 siblings, 1 reply; 12+ messages in thread
From: Jeff King @ 2024-07-08 8:52 UTC (permalink / raw)
To: Rikita Ishikawa via GitGitGadget; +Cc: git, Rikita Ishikawa
On Sun, Jul 07, 2024 at 02:28:31AM +0000, Rikita Ishikawa via GitGitGadget wrote:
> From: Rikita Ishikawa <lagrange.resolvent@gmail.com>
>
> The number to be displayed is calculated by the
> following defined in object.h.
>
> ```
> #define REV_SHIFT 2
> #define MAX_REVS (FLAG_BITS - REV_SHIFT)
> ```
>
> FLAG_BITS is currently 28, so 26 is the correct
> number.
>
> Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
> ---
Thanks, this version looks pretty good to me.
One minor nit: commit messages are not actually markdown (even when
rendered on GitHub), so your ``` block delimiters are a bit unusual.
We'd usually just rely on the indentation and blank lines to show the
structure.
-Peff
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v5] doc: fix the max number of git show-branches shown
2024-07-07 2:28 ` [PATCH v4] " Rikita Ishikawa via GitGitGadget
2024-07-07 2:30 ` rikita ishikawa
2024-07-08 8:52 ` Jeff King
@ 2024-07-08 13:07 ` Rikita Ishikawa via GitGitGadget
2024-07-08 15:29 ` Junio C Hamano
2 siblings, 1 reply; 12+ messages in thread
From: Rikita Ishikawa via GitGitGadget @ 2024-07-08 13:07 UTC (permalink / raw)
To: git; +Cc: Jeff King, Rikita Ishikawa, Rikita Ishikawa
From: Rikita Ishikawa <lagrange.resolvent@gmail.com>
The number to be displayed is calculated by the
following defined in object.h.
#define REV_SHIFT 2
#define MAX_REVS (FLAG_BITS - REV_SHIFT)
FLAG_BITS is currently 28, so 26 is the correct
number.
Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
---
doc: fix the max number of git show-branches shown
Changes since v1:
* Explain in the commit message why "26" is the correct number.
* No change (to rename GitHub and re-send).
* Change the author of the commit.
* Fixed code block in commit message.
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1757%2Fwonda-tea-coffee%2Fupdate-git-show-branch-description-v5
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1757/wonda-tea-coffee/update-git-show-branch-description-v5
Pull-Request: https://github.com/gitgitgadget/git/pull/1757
Range-diff vs v4:
1: 76ab2f17015 ! 1: 7c0af41794f doc: fix the max number of git show-branches shown
@@ Commit message
The number to be displayed is calculated by the
following defined in object.h.
- ```
- #define REV_SHIFT 2
- #define MAX_REVS (FLAG_BITS - REV_SHIFT)
- ```
+ #define REV_SHIFT 2
+ #define MAX_REVS (FLAG_BITS - REV_SHIFT)
FLAG_BITS is currently 28, so 26 is the correct
number.
Documentation/git-show-branch.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
index c771c897707..bc31d8b6d33 100644
--- a/Documentation/git-show-branch.txt
+++ b/Documentation/git-show-branch.txt
@@ -22,7 +22,7 @@ Shows the commit ancestry graph starting from the commits named
with <rev>s or <glob>s (or all refs under refs/heads
and/or refs/tags) semi-visually.
-It cannot show more than 29 branches and commits at a time.
+It cannot show more than 26 branches and commits at a time.
It uses `showbranch.default` multi-valued configuration items if
no <rev> or <glob> is given on the command line.
base-commit: 06e570c0dfb2a2deb64d217db78e2ec21672f558
--
gitgitgadget
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH v5] doc: fix the max number of git show-branches shown
2024-07-08 13:07 ` [PATCH v5] " Rikita Ishikawa via GitGitGadget
@ 2024-07-08 15:29 ` Junio C Hamano
0 siblings, 0 replies; 12+ messages in thread
From: Junio C Hamano @ 2024-07-08 15:29 UTC (permalink / raw)
To: Rikita Ishikawa via GitGitGadget; +Cc: git, Jeff King, Rikita Ishikawa
"Rikita Ishikawa via GitGitGadget" <gitgitgadget@gmail.com> writes:
> From: Rikita Ishikawa <lagrange.resolvent@gmail.com>
> ...
> FLAG_BITS is currently 28, so 26 is the correct
> number.
>
> Signed-off-by: Rikita Ishikawa <lagrange.resolvent@gmail.com>
Looking good. Thanks. Will queue.
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-07-08 15:29 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-03 22:36 [PATCH] doc: fix the max number of git show-branches shown wonda-tea-coffee via GitGitGadget
2024-07-06 6:27 ` Jeff King
2024-07-06 18:21 ` Junio C Hamano
2024-07-06 9:53 ` [PATCH v2] " wonda-tea-coffee via GitGitGadget
2024-07-06 23:14 ` Jeff King
2024-07-07 2:19 ` [PATCH v3] " Rikita Ishikawa via GitGitGadget
2024-07-07 2:28 ` [PATCH v4] " Rikita Ishikawa via GitGitGadget
2024-07-07 2:30 ` rikita ishikawa
2024-07-08 8:52 ` Jeff King
2024-07-08 13:01 ` rikita ishikawa
2024-07-08 13:07 ` [PATCH v5] " Rikita Ishikawa via GitGitGadget
2024-07-08 15:29 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).