git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Git-GUI change of maintainership
@ 2024-04-27 14:27 Johannes Sixt
  2024-04-27 17:24 ` Junio C Hamano
  2024-04-29 14:24 ` Pratyush Yadav
  0 siblings, 2 replies; 7+ messages in thread
From: Johannes Sixt @ 2024-04-27 14:27 UTC (permalink / raw)
  To: Git Mailing List; +Cc: Pratyush Yadav, Junio C Hamano

Hi all,

In [1], Pratyush has expressed the wish to hand over maintainership of
Git-GUI. Since Git-GUI is an important tool in my toolbox, I would
volunteer to pick up the task.

Pratyush, please let us know if this would be OK for you.

I will let you all know if and when I have set up a repository to pull
from or to fork.

[1] https://lore.kernel.org/git/mafs0wmxkcs3o.fsf@yadavpratyush.com/

-- Hannes

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Git-GUI change of maintainership
  2024-04-27 14:27 Git-GUI change of maintainership Johannes Sixt
@ 2024-04-27 17:24 ` Junio C Hamano
  2024-04-29 14:24 ` Pratyush Yadav
  1 sibling, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2024-04-27 17:24 UTC (permalink / raw)
  To: Johannes Sixt; +Cc: Git Mailing List, Pratyush Yadav

Johannes Sixt <j6t@kdbg.org> writes:

> In [1], Pratyush has expressed the wish to hand over maintainership of
> Git-GUI. Since Git-GUI is an important tool in my toolbox, I would
> volunteer to pick up the task.
>
> Pratyush, please let us know if this would be OK for you.
>
> I will let you all know if and when I have set up a repository to pull
> from or to fork.
>
> [1] https://lore.kernel.org/git/mafs0wmxkcs3o.fsf@yadavpratyush.com/

Nice.  Thanks for volunteering.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Git-GUI change of maintainership
  2024-04-27 14:27 Git-GUI change of maintainership Johannes Sixt
  2024-04-27 17:24 ` Junio C Hamano
@ 2024-04-29 14:24 ` Pratyush Yadav
  2024-05-11 15:25   ` Johannes Sixt
  1 sibling, 1 reply; 7+ messages in thread
From: Pratyush Yadav @ 2024-04-29 14:24 UTC (permalink / raw)
  To: Johannes Sixt; +Cc: Git Mailing List, Pratyush Yadav, Junio C Hamano

On Sat, Apr 27 2024, Johannes Sixt wrote:

> Hi all,
>
> In [1], Pratyush has expressed the wish to hand over maintainership of
> Git-GUI. Since Git-GUI is an important tool in my toolbox, I would
> volunteer to pick up the task.
>
> Pratyush, please let us know if this would be OK for you.

Yes, certainly! Thanks for taking this up and thanks for your work on
git-gui in the past :-)

Acked-by: Pratyush Yadav <me@yadavpratyush.com>

>
> I will let you all know if and when I have set up a repository to pull
> from or to fork.

Would also be good to send a patch to update Documentation/git-gui.txt
and Documentation/SubmittingPatches.

>
> [1] https://lore.kernel.org/git/mafs0wmxkcs3o.fsf@yadavpratyush.com/
>
> -- Hannes

-- 
Regards,
Pratyush Yadav

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Git-GUI change of maintainership
  2024-04-29 14:24 ` Pratyush Yadav
@ 2024-05-11 15:25   ` Johannes Sixt
  2024-05-11 16:43     ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Sixt @ 2024-05-11 15:25 UTC (permalink / raw)
  To: Pratyush Yadav; +Cc: Git Mailing List, Junio C Hamano

Am 29.04.24 um 16:24 schrieb Pratyush Yadav:
> On Sat, Apr 27 2024, Johannes Sixt wrote:
>> Since Git-GUI is an important tool in my toolbox, I would
>> volunteer to pick up the task.
>>
>> Pratyush, please let us know if this would be OK for you.
> 
> Yes, certainly! Thanks for taking this up and thanks for your work on
> git-gui in the past :-)
> 
> Acked-by: Pratyush Yadav <me@yadavpratyush.com>
> 
>>
>> I will let you all know if and when I have set up a repository to pull
>> from or to fork.

The Git-GUI repository that I now maintain is at
https://github.com/j6t/git-gui. I have cherry-picked a few commits from
the Git repository so that at this time its master branch is
tree-identical to the version shipped with Git v2.45.0, i.e.,
v2.45.0:git-gui =~ 8c60bdfc0dce.

I am about to apply the patch below to note the new maintainer.

> Would also be good to send a patch to update Documentation/git-gui.txt
> and Documentation/SubmittingPatches.

I'll follow-up later this weekend.

----- 8< -----
Subject: [PATCH] git-gui: note the new maintainer

Pratyush Yadev has relinquished, and Johannes Sixt has taken over,
maintainership of Git-GUI.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index b460b64..948e925 100644
--- a/README.md
+++ b/README.md
@@ -42,8 +42,8 @@ You probably need to have root/admin permissions to install.
 
 # Contributing
 
-The project is currently maintained by Pratyush Yadav over at
-https://github.com/prati0100/git-gui. Even though the project is hosted at
+The project is currently maintained by Johannes Sixt at
+https://github.com/j6t/git-gui. Even though the project is hosted at
 GitHub, the development does not happen over GitHub Issues and Pull Requests.
 Instead, an email based workflow is used. The Git mailing list
 [git@vger.kernel.org](mailto:git@vger.kernel.org) is where the patches are
-- 
2.45.0.271.gd8a10d2f05


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: Git-GUI change of maintainership
  2024-05-11 15:25   ` Johannes Sixt
@ 2024-05-11 16:43     ` Junio C Hamano
  2024-05-11 20:53       ` Johannes Sixt
  0 siblings, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2024-05-11 16:43 UTC (permalink / raw)
  To: Johannes Sixt; +Cc: Pratyush Yadav, Git Mailing List

Johannes Sixt <j6t@kdbg.org> writes:

> I am about to apply the patch below to note the new maintainer.

Thanks.  I have these planned.


diff --git i/Documentation/SubmittingPatches w/Documentation/SubmittingPatches
index 384893be1c..0690ae2140 100644
--- i/Documentation/SubmittingPatches
+++ w/Documentation/SubmittingPatches
@@ -545,9 +545,9 @@ not a text/plain, it's something else.
 Some parts of the system have dedicated maintainers with their own
 repositories.
 
-- `git-gui/` comes from git-gui project, maintained by Pratyush Yadav:
+- `git-gui/` comes from git-gui project, maintained by Johannes Sixt:
 
-	https://github.com/prati0100/git-gui.git
+        https://github.com/j6t/git-gui
 
 - `gitk-git/` comes from Paul Mackerras's gitk project:
 

diff --git a/MaintNotes b/MaintNotes
index b1f0e63..00ffa91 100644
--- a/MaintNotes
+++ b/MaintNotes
@@ -278,9 +278,9 @@ and enhancements in contrib/ area to the primary contributors of them.
 Although the following are included in git.git repository, they have their
 own authoritative repository and maintainers:
 
- - git-gui/ comes from git-gui project, maintained by Pratyush Yadav:
+ - git-gui/ comes from git-gui project, maintained by Johannes Sixt:
 
-        https://github.com/prati0100/git-gui.git
+        https://github.com/j6t/git-gui
 
  - gitk-git/ comes from Paul Mackerras's gitk project:
 

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: Git-GUI change of maintainership
  2024-05-11 16:43     ` Junio C Hamano
@ 2024-05-11 20:53       ` Johannes Sixt
  2024-05-11 21:29         ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Sixt @ 2024-05-11 20:53 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Pratyush Yadav, Git Mailing List

Am 11.05.24 um 18:43 schrieb Junio C Hamano:
> Johannes Sixt <j6t@kdbg.org> writes:
> 
>> I am about to apply the patch below to note the new maintainer.
> 
> Thanks.  I have these planned.
> 
> 
> diff --git i/Documentation/SubmittingPatches w/Documentation/SubmittingPatches
> index 384893be1c..0690ae2140 100644
> --- i/Documentation/SubmittingPatches
> +++ w/Documentation/SubmittingPatches
> 
> diff --git a/MaintNotes b/MaintNotes
> index b1f0e63..00ffa91 100644
> --- a/MaintNotes
> +++ b/MaintNotes

Thank you. Please consider the following as well.

diff --git a/Documentation/git-gui.txt b/Documentation/git-gui.txt
index e8f3ccb433..f5b02ef114 100644
--- a/Documentation/git-gui.txt
+++ b/Documentation/git-gui.txt
@@ -114,7 +114,7 @@ of end users.
 
 The official repository of the 'git gui' project can be found at:
 
-  https://github.com/prati0100/git-gui.git/
+  https://github.com/j6t/git-gui
 
 GIT
 ---


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: Git-GUI change of maintainership
  2024-05-11 20:53       ` Johannes Sixt
@ 2024-05-11 21:29         ` Junio C Hamano
  0 siblings, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2024-05-11 21:29 UTC (permalink / raw)
  To: Johannes Sixt; +Cc: Pratyush Yadav, Git Mailing List

Johannes Sixt <j6t@kdbg.org> writes:

> Thank you. Please consider the following as well.
>
> diff --git a/Documentation/git-gui.txt b/Documentation/git-gui.txt
> index e8f3ccb433..f5b02ef114 100644
> --- a/Documentation/git-gui.txt
> +++ b/Documentation/git-gui.txt
> @@ -114,7 +114,7 @@ of end users.
>  
>  The official repository of the 'git gui' project can be found at:
>  
> -  https://github.com/prati0100/git-gui.git/
> +  https://github.com/j6t/git-gui

Ah, that is part of my tree, not pulled from you via -Xsubtree.

Will do.  Thanks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-05-11 21:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-27 14:27 Git-GUI change of maintainership Johannes Sixt
2024-04-27 17:24 ` Junio C Hamano
2024-04-29 14:24 ` Pratyush Yadav
2024-05-11 15:25   ` Johannes Sixt
2024-05-11 16:43     ` Junio C Hamano
2024-05-11 20:53       ` Johannes Sixt
2024-05-11 21: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).