Skip to content

Commit 42fdd21

Browse files
committed
fixup! Add an issue template
Turn the issue template into an issue form to reduce the number of issues that are just the blank template with no information. Signed-off-by: Matthias Aßhauer <[email protected]>
1 parent d71920c commit 42fdd21

File tree

2 files changed

+104
-68
lines changed

2 files changed

+104
-68
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 68 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
name: Bug report
2+
description: Use this template to report bugs.
3+
body:
4+
- type: checkboxes
5+
id: search
6+
attributes:
7+
label: Existing issues matching what you're seeing
8+
description: Please search for [open](https://github.com/git-for-windows/git/issues?q=is%3Aopen) or [closed](https://github.com/git-for-windows/git/issues?q=is%3Aclosed) issue matching what you're seeing before submitting a new issue.
9+
options:
10+
- label: I was not able to find an open or closed issue matching what I'm seeing
11+
- type: textarea
12+
id: git-for-windows-version
13+
attributes:
14+
label: Git for Windows version
15+
description: Which version of Git for Windows are you using? Is it 32-bit or 64-bit?
16+
placeholder: Please insert the output of `git --version --build-options` here
17+
render: shell
18+
validations:
19+
required: true
20+
- type: dropdown
21+
id: windows-version
22+
attributes:
23+
label: Windows version
24+
description: Which version of Windows are you running?
25+
options:
26+
- Windows 8.1
27+
- Windows 10
28+
- Windows 11
29+
- Other
30+
default: 2
31+
validations:
32+
required: true
33+
- type: dropdown
34+
id: windows-arch
35+
attributes:
36+
label: Windows CPU architecture
37+
description: Is your Windows 32-bit or 64-bit?
38+
options:
39+
- 32-bit
40+
- 64-bit
41+
default: 1
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: windows-version-cmd
46+
attributes:
47+
label: Additional Windows version information
48+
description: This provides us with further information about your Windows such as the build number
49+
placeholder: Please insert the output of `cmd.exe /c ver` here
50+
render: shell
51+
- type: textarea
52+
id: options
53+
attributes:
54+
label: Options set during installation
55+
description: What options did you set as part of the installation? Or did you choose the defaults?
56+
placeholder: |
57+
One of the following:
58+
> type "C:\Program Files\Git\etc\install-options.txt"
59+
> type "C:\Program Files (x86)\Git\etc\install-options.txt"
60+
> type "%USERPROFILE%\AppData\Local\Programs\Git\etc\install-options.txt"
61+
> type "$env:USERPROFILE\AppData\Local\Programs\Git\etc\install-options.txt"
62+
$ cat /etc/install-options.txt
63+
render: shell
64+
validations:
65+
required: true
66+
- type: textarea
67+
id: other-things
68+
attributes:
69+
label: Other interesting things
70+
description: Any other interesting things about your environment that might be related to the issue you're seeing?
71+
- type: input
72+
id: terminal
73+
attributes:
74+
label: Terminal/shell
75+
description: Which terminal/shell are you running Git from? e.g Bash/CMD/PowerShell/other
76+
validations:
77+
required: true
78+
- type: textarea
79+
id: commands
80+
attributes:
81+
label: Commands that trigger the issue
82+
description: What commands did you run to trigger this issue? If you can provide a [Minimal, Complete, and Verifiable example](http://stackoverflow.com/help/mcve) this will help us understand the issue.
83+
render: shell
84+
validations:
85+
required: true
86+
- type: textarea
87+
id: expected-behaviour
88+
attributes:
89+
label: Expected behaviour
90+
description: What did you expect to occur after running these commands?
91+
validations:
92+
required: true
93+
- type: textarea
94+
id: actual-behaviour
95+
attributes:
96+
label: Actual behaviour
97+
description: What actually happened instead?
98+
validations:
99+
required: true
100+
- type: textarea
101+
id: repository
102+
attributes:
103+
label: Repository
104+
description: If the problem was occurring with a specific repository, can you provide the URL to that repository to help us with testing?

0 commit comments

Comments
 (0)