Skip to content

Commit

Permalink
Add detail to ISSUE_TEMPLATE setup questions
Browse files Browse the repository at this point in the history
With the addition of the architecture (x86/x86_64) to git --version
--build-options, it's good to add that to the Git version question.

On the Windows version question, prompted for "Vista, 7, 8, 10? to
indicate exactly what we're talking about. Also added `cmd.exe /c ver` as
a command to run to get the Windows version, and `cat /etc/install-options.txt`
and several alternative CMD commands to provide information on build options.

Relevant Links:
This is part of #847.
The git --version --build-options change discussion is at
#846

Signed-off-by: Clive Chan <[email protected]>
  • Loading branch information
cchan authored and dscho committed Sep 6, 2016
1 parent 01c60a4 commit 84b1208
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
- [ ] I was not able to find an [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 I'm seeing

### Setup

- Which version of Git for Windows are you using? Is it 32-bit or 64-bit?

```
$ git --version --build-options
_TODO_
```

- Which version of Windows are you running? Vista, 7, 8, 10? Is it 32-bit or 64-bit?

```
$ cmd.exe /c ver
_TODO_
```

- What options did you set as part of the installation? Or did you choose the
defaults?

```
# One of the following:
> type "C:\Program Files\Git\etc\install-options.txt"
> type "C:\Program Files (x86)\Git\etc\install-options.txt"
> type "%USERPROFILE%\AppData\Local\Programs\Git\etc\install-options.txt"
$ cat /etc/install_options.txt
_TODO_
```

- Any other interesting things about your environment that might be related
to the issue you're seeing?

_TODO_

### Details

- Which terminal/shell are you running Git from? e.g Bash/CMD/PowerShell/other

_TODO_

- 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.

```
TODO
```
- What did you expect to occur after running these commands?

_TODO_

- What actually happened instead?

_TODO_

- If the problem was occurring with a specific repository, can you provide the
URL to that repository to help us with testing?

_TODO_

0 comments on commit 84b1208

Please sign in to comment.