mbox series

[v3,0/2] git-maintenance quality-of-life improvements

Message ID 20221109190708.22725-1-ronan@rjp.ie (mailing list archive)
Headers show
Series git-maintenance quality-of-life improvements | expand

Message

Ronan Pigott Nov. 9, 2022, 7:07 p.m. UTC
This is a pair of quality-of-life patches for git-maintenance that have
helped me in my workflow. PTAL.

Changes in v2:
 - Added a test case for path interpolation in for-each-repo
 - Changed [--config <file>] to [--config-file <path>] in
   register/unregister
 - Dropped the short-name option, -c
 - Avoid finding the global config when the user has supplied the config
   on the command line

Changes in v3:
 - Report an error in unregister when the user specifies a config where
   the repo is not already registered
 - Add a test case for the above
 - Correct option description in the docs

Ronan Pigott (2):
  for-each-repo: interpolate repo path arguments
  maintenance: add option to register in a specific config

 Documentation/git-maintenance.txt | 14 +++++-----
 builtin/for-each-repo.c           |  5 +++-
 builtin/gc.c                      | 45 ++++++++++++++++++++++---------
 t/t0068-for-each-repo.sh          |  6 +++++
 t/t7900-maintenance.sh            | 21 ++++++++++++++-
 5 files changed, 69 insertions(+), 22 deletions(-)

Comments

Taylor Blau Nov. 9, 2022, 9:25 p.m. UTC | #1
Hi Ronan,

On Wed, Nov 09, 2022 at 12:07:06PM -0700, Ronan Pigott wrote:
> Changes in v3:
>  - Report an error in unregister when the user specifies a config where
>    the repo is not already registered
>  - Add a test case for the above
>  - Correct option description in the docs

Since this series is already in 'next', the existing patches are frozen
and won't be changed.

Would you mind re-submitting this as one or more patches on top of the
'rp/maintenance-qol' branch in my fork at
https://github.com/ttaylorr/git?

If you have any questions about how to do that, please feel free to
contact me off-list and I can give you a hand.

Thanks,
Taylor