Hi Emily, On Wed, 19 Feb 2020, Emily Shaffer wrote: > diff --git a/Makefile b/Makefile > index 9e6705061d..6bdd3b9337 100644 > --- a/Makefile > +++ b/Makefile > @@ -818,6 +818,7 @@ VCSSVN_LIB = vcs-svn/lib.a > > GENERATED_H += config-list.h > GENERATED_H += command-list.h > +GENERATED_H += bugreport-config-safelist.h > > LIB_H := $(sort $(patsubst ./%,%,$(shell git ls-files '*.h' ':!t/' ':!Documentation/' 2>/dev/null || \ > $(FIND) . \ In order to pretend that we actually care about developers on Windows, let's squash this in? -- snipsnap -- Subject: [PATCH] fixup??? bugreport: generate config safelist based on docs The Visual Studio build is a special beast: as we cannot assume the presence of any Unix tools on Windows, we have to commit all of the files generated via shell scripts. These two generated header files are no exception. Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- config.mak.uname | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config.mak.uname b/config.mak.uname index 6d58d22cd5a..f1f36e43e47 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -788,8 +788,10 @@ vcxproj: git add -f git/LinkOrCopyBuiltins.targets git-remote-http/LinkOrCopyRemoteHttp.targets # Add command-list.h - $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 command-list.h - git add -f command-list.h + $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 command-list.h \ + config-list.h bugreport-config-safelist.h + git add -f command-list.h \ + config-list.h bugreport-config-safelist.h # Add scripts rm -f perl/perl.mak -- 2.25.1.windows.1