Skip to content

Commit f2e5051

Browse files
dschoGit for Windows Build Agent
authored andcommitted
Merge 'readme' into HEAD
Add a README.md for GitHub goodness. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2 parents 262cbd7 + 4bbcbe7 commit f2e5051

11 files changed

Lines changed: 2019 additions & 59 deletions

File tree

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.py text eol=lf diff=python
88
*.bat text eol=crlf
99
*.png binary
10+
/AGENTS.md conflict-marker-size=32
1011
CODE_OF_CONDUCT.md -whitespace
1112
/Documentation/**/*.adoc text eol=lf whitespace=trail,space,incomplete
1213
/command-list.txt text eol=lf
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
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?
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: What CPU Archtitecture does your Windows target?
38+
options:
39+
- i686 (32-bit)
40+
- x86_64 (64-bit)
41+
- ARM64
42+
default: 1
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: windows-version-cmd
47+
attributes:
48+
label: Additional Windows version information
49+
description: This provides us with further information about your Windows such as the build number
50+
placeholder: Please insert the output of `cmd.exe /c ver` here
51+
render: shell
52+
- type: textarea
53+
id: options
54+
attributes:
55+
label: Options set during installation
56+
description: What options did you set as part of the installation? Or did you choose the defaults?
57+
placeholder: |
58+
One of the following:
59+
> type "C:\Program Files\Git\etc\install-options.txt"
60+
> type "C:\Program Files (x86)\Git\etc\install-options.txt"
61+
> type "%USERPROFILE%\AppData\Local\Programs\Git\etc\install-options.txt"
62+
> type "$env:USERPROFILE\AppData\Local\Programs\Git\etc\install-options.txt"
63+
$ cat /etc/install-options.txt
64+
render: shell
65+
validations:
66+
required: true
67+
- type: textarea
68+
id: other-things
69+
attributes:
70+
label: Other interesting things
71+
description: Any other interesting things about your environment that might be related to the issue you're seeing?
72+
- type: input
73+
id: terminal
74+
attributes:
75+
label: Terminal/shell
76+
description: Which terminal/shell are you running Git from? e.g Bash/CMD/PowerShell/other
77+
validations:
78+
required: true
79+
- type: textarea
80+
id: commands
81+
attributes:
82+
label: Commands that trigger the issue
83+
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.
84+
render: shell
85+
validations:
86+
required: true
87+
- type: textarea
88+
id: expected-behaviour
89+
attributes:
90+
label: Expected behaviour
91+
description: What did you expect to occur after running these commands?
92+
validations:
93+
required: true
94+
- type: textarea
95+
id: actual-behaviour
96+
attributes:
97+
label: Actual behaviour
98+
description: What actually happened instead?
99+
validations:
100+
required: true
101+
- type: textarea
102+
id: repository
103+
attributes:
104+
label: Repository
105+
description: If the problem was occurring with a specific repository, can you provide the URL to that repository to help us with testing?

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
Thanks for taking the time to contribute to Git! Please be advised that the
2-
Git community does not use github.com for their contributions. Instead, we use
3-
a mailing list (git@vger.kernel.org) for code submissions, code reviews, and
4-
bug reports. Nevertheless, you can use GitGitGadget (https://gitgitgadget.github.io/)
1+
Thanks for taking the time to contribute to Git!
2+
3+
Those seeking to contribute to the Git for Windows fork should see
4+
http://gitforwindows.org/#contribute on how to contribute Windows specific
5+
enhancements.
6+
7+
If your contribution is for the core Git functions and documentation
8+
please be aware that the Git community does not use the github.com issues
9+
or pull request mechanism for their contributions.
10+
11+
Instead, we use the Git mailing list (git@vger.kernel.org) for code and
12+
documentation submissions, code reviews, and bug reports. The
13+
mailing list is plain text only (anything with HTML is sent directly
14+
to the spam folder).
15+
16+
Nevertheless, you can use GitGitGadget (https://gitgitgadget.github.io/)
517
to conveniently send your Pull Requests commits to our mailing list.
618

719
For a single-commit pull request, please *leave the pull request description

0 commit comments

Comments
 (0)