-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No functional change
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Contributing to Stockfish | ||
|
||
Welcome to the Stockfish project! We are excited that you are interested in contributing. This document outlines the guidelines and steps to follow when making contributions to Stockfish. | ||
|
||
## Table of Contents | ||
|
||
- [Building Stockfish](#building-stockfish) | ||
- [Making Contributions](#making-contributions) | ||
- [Reporting Issues](#reporting-issues) | ||
- [Submitting Pull Requests](#submitting-pull-requests) | ||
- [Code Style](#code-style) | ||
- [Community and Communication](#community-and-communication) | ||
- [License](#license) | ||
|
||
## Building Stockfish | ||
|
||
In case you do not have a C++ compiler installed you can follow the instructions from our wiki [Linux](https://github.com/official-stockfish/Stockfish/wiki/Compiling-from-source#linux)/[Windows](https://github.com/official-stockfish/Stockfish/wiki/Compiling-from-source#windows)/[macOS](https://github.com/official-stockfish/Stockfish/wiki/Compiling-from-source#macos) to install one. | ||
|
||
## Making Contributions | ||
|
||
### Reporting Issues | ||
|
||
If you find a bug, please open an issue on the [issue tracker](https://github.com/official-stockfish/Stockfish/issues). Be sure to include relevant information like your operating system, build environment, and a detailed description of the problem. | ||
|
||
_Please note that Stockfish's development is not focused on adding new features. So any issue regarding missing features will potentially be closed without further discussion._ | ||
|
||
### Submitting Pull Requests | ||
|
||
- Functional changes need to be tested on fishtest. See [Creating my First Test](https://github.com/glinscott/fishtest/wiki/Creating-my-first-test#create-your-test) for more details. | ||
The accompanying pull request should include a link to the test results and the new bench. | ||
|
||
- Non-functional changes (e.g. refactoring, code style, documentation) do not need to be tested on fishtest, unless they might impact performance. | ||
|
||
- Provide a clear and concise description of the changes in the pull request description. | ||
|
||
_First time contributors should add their name to [AUTHORS](https://github.com/official-stockfish/Stockfish/blob/master/AUTHORS)._ | ||
|
||
_Stockfish's development is not focused on adding new features. So any pull request introducing new features will potentially be closed without further discussion._ | ||
|
||
## Code Style | ||
|
||
We do not have a strict code style. But it is best to stick to the existing style of the file you are editing. | ||
|
||
## Community and Communication | ||
|
||
- Join the [Stockfish discord](https://discord.gg/GWDRS3kU6R) to discuss ideas, issues, and development. | ||
- Participate in the [Stockfish GitHub discussions](https://github.com/official-stockfish/Stockfish/discussions) for broader conversations. | ||
|
||
## License | ||
|
||
By contributing to Stockfish, you agree that your contributions will be licensed under the GNU General Public License v3.0. See [Copying.txt](https://github.com/official-stockfish/Stockfish/blob/master/Copying.txt) for more details. | ||
|
||
Thank you for contributing to Stockfish and helping us make it even better! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters