1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #739 from jbcrail/contribute

Move contributing section into separate file
This commit is contained in:
Heather 2015-12-03 10:58:45 +04:00
commit ebf58b4c7d
2 changed files with 17 additions and 12 deletions

16
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,16 @@
Contributing to coreutils
=========================
Contributions are very welcome, and should target Rust's master branch until
Rust 1.0 is released. You may *claim* an item on the to-do list by following
these steps:
1. Open an issue named "Implement [the utility of your choice]", e.g. "Implement ls"
2. State that you are working on this utility.
3. Develop the utility.
4. Add integration tests.
5. Add the reference to your utility into Cargo.toml and Makefile.
6. Remove utility from the to-do list in the README.
7. Submit a pull request and close the issue.
The steps above imply that, before starting to work on a utility, you should search the issues to make sure no one else is working on it.

View file

@ -113,18 +113,7 @@ make TEST='UTILITY_1 UTILITY_2' test
Contribute
----------
Contributions are very welcome, and should target Rust's master branch until
Rust 1.0 is released. You may *claim* an item on the to-do list by following
these steps:
1. Open an issue named "Implement [the utility of your choice]", e.g. "Implement ls"
2. State that you are working on this utility.
3. Develop the utility.
4. Add the reference to your utility into uutils/uutils.rs (required for multibinary).
5. Remove utility from the to-do list on this README.
6. Submit a pull request and close the issue.
The steps above imply that, before starting to work on a utility, you should search the issues to make sure no one else is working on it.
To contribute to coreutils, please see [CONTRIBUTING](CONTRIBUTING.md).
To do
-----