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
merge-blobs.h
#ifndef MERGE_BLOBS_H
#define MERGE_BLOBS_H

struct blob;
struct index_state;

void *merge_blobs(struct index_state *, const char *,
		  struct blob *, struct blob *,
		  struct blob *, unsigned long *);

#endif /* MERGE_BLOBS_H */
back to top