https://github.com/git/git
Revision 897d28bcc23878b5d98b46f3903e3d2a302d8a01 authored by Junio C Hamano on 06 February 2021, 00:31:23 UTC, committed by Junio C Hamano on 06 February 2021, 00:31:23 UTC
"git for-each-repo --config=<var> <cmd>" should not run <cmd> for
any repository when the configuration variable <var> is not defined
even once.

* ds/for-each-repo-noopfix:
  for-each-repo: do nothing on empty config
2 parent s 4fc7b22 + 6c62f01
Raw File
Tip revision: 897d28bcc23878b5d98b46f3903e3d2a302d8a01 authored by Junio C Hamano on 06 February 2021, 00:31:23 UTC
Merge branch 'ds/for-each-repo-noopfix' into maint
Tip revision: 897d28b
prune-packed.h
#ifndef PRUNE_PACKED_H
#define PRUNE_PACKED_H

#define PRUNE_PACKED_DRY_RUN 01
#define PRUNE_PACKED_VERBOSE 02

void prune_packed_objects(int);

#endif
back to top