X Tutup
Skip to content

Commit 5a59a8b

Browse files
mislavNate Smith
authored andcommitted
Add contributing.md (cli#252)
1 parent 83073f8 commit 5a59a8b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/CONTRIBUTING.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## Contributing
2+
3+
[legal]: https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license
4+
[license]: ../LICENSE
5+
[code-of-conduct]: CODE-OF-CONDUCT.md
6+
7+
Hi! Thanks for your interest in contributing to the GitHub CLI!
8+
9+
Given that this project is very early and still in beta, we're only accepting pull requests for bug fixes right now. We'd love to
10+
hear about ideas for new features as issues, though!
11+
12+
Please do:
13+
14+
* open an issue if things aren't working as expected
15+
* open an issue to propose a significant change
16+
* open a PR to fix a bug
17+
18+
## Submitting a bug fix
19+
20+
0. Clone this repository
21+
0. Create a new branch: `git checkout -b my-branch-name`
22+
0. Make your change, add tests, and ensure tests pass
23+
0. Make a PR: `gh pr create --web`
24+
25+
Contributions to this project are [released][legal] to the public under the [project's open source license][license].
26+
27+
Please note that this project adheres to a [Contributor Code of Conduct][code-of-conduct]. By participating in this project you agree to abide by its terms.
28+
29+
## Resources
30+
31+
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
32+
- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/)
33+
- [GitHub Help](https://help.github.com)

0 commit comments

Comments
 (0)
X Tutup