mbox series

[v13,0/5] git-bugreport with fixed VS build

Message ID 20200416211807.60811-1-emilyshaffer@google.com (mailing list archive)
Headers show
Series git-bugreport with fixed VS build | expand

Message

Emily Shaffer April 16, 2020, 9:18 p.m. UTC
Two changes from the prior set attempted for 'next':

- https://lore.kernel.org/git/xmqqh7xk45l4.fsf@gitster.c.googlers.com
  squashed into "help: move list_config_help to builtin/help"
- Danh's SOB line changed to use the correct identity in "bugreport: add
  compiler info"

When generating this series I did base it on
dd/ci-swap-azure-pipelines-with-github-actions in order to get the
vs-build CI target; the results are here:
https://github.com/nasamuffin/git/actions/runs/80163844

Thanks.

Emily Shaffer (5):
  help: move list_config_help to builtin/help
  bugreport: add tool to generate debugging info
  bugreport: gather git version and build info
  bugreport: add uname info
  bugreport: add compiler info

 .gitignore                      |   2 +
 Documentation/git-bugreport.txt |  52 ++++++++++++
 Makefile                        |  18 +++-
 bugreport.c                     | 142 ++++++++++++++++++++++++++++++++
 builtin/help.c                  |  86 +++++++++++++++++++
 command-list.txt                |   1 +
 compat/compiler.h               |  41 +++++++++
 compat/vcbuild/README           |   4 +-
 config.mak.uname                |   6 +-
 generate-cmdlist.sh             |  19 -----
 generate-configlist.sh          |  21 +++++
 help.c                          | 131 +++++++----------------------
 help.h                          |   2 +-
 strbuf.c                        |   4 +
 strbuf.h                        |   1 +
 t/t0091-bugreport.sh            |  61 ++++++++++++++
 16 files changed, 460 insertions(+), 131 deletions(-)
 create mode 100644 Documentation/git-bugreport.txt
 create mode 100644 bugreport.c
 create mode 100644 compat/compiler.h
 create mode 100755 generate-configlist.sh
 create mode 100755 t/t0091-bugreport.sh