LinuxCommandLibrary

git-bugreport

Generate Git bug reports

TLDR

Create a new bug report file in the current directory

$ git bugreport
copy

Create a new bug report file in the specified directory, creating it if it does not exist
$ git bugreport [[-o|--output-directory]] [path/to/directory]
copy

Create a new bug report file with the specified filename suffix in strftime format
$ git bugreport [[-s|--suffix]] [%m%d%y]
copy

SYNOPSIS

git bugreport [--format=format] [--output-directory=path] [--compress=format] [--include-description] [--diagnose-script=script] [--version] [--no-diagnose-script]

PARAMETERS

--format=
    Specifies the output format for the bug report. Accepted values are tarball (default) or directory.

--output-directory=
    Sets the destination directory where the bug report will be created. By default, a temporary directory is used.

--compress=
    Determines the compression format when the output --format is tarball. Supported formats are gz (default), bz2, or xz.

--include-description
    Prompts the user to enter a textual description of the bug, which is then included in the generated report.

--diagnose-script=