mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
chore(README.md): shorten 'How to Contribute' section
This commit is contained in:
parent
87c4743460
commit
283588c2b7
1 changed files with 3 additions and 25 deletions
28
README.md
28
README.md
|
@ -475,36 +475,14 @@ There's also the video tutorial series [Argument Parsing with Rust](https://www.
|
|||
|
||||
*Note*: Apologies for the resolution of the first video, it will be updated to a better resolution soon. The other videos have a proper resolution.
|
||||
|
||||
## [How to Contribute](https://github.com/kbknapp/clap-rs/blob/master/CONTRIBUTING.md)
|
||||
## How to Contribute
|
||||
|
||||
Contributions are always welcome! And there is a multitude of ways in which you can help depending on what you like to do, or are good at. Anything from documentation, code cleanup, issue completion, new features, you name it, even filing issues is contributing and greatly appreciated!
|
||||
|
||||
1. Fork `clap`
|
||||
2. Clone your fork (`git clone https://github.com/$YOUR_USERNAME/clap-rs && cd clap-rs`)
|
||||
3. Create new branch (`git checkout -b new-branch`)
|
||||
4. Make your changes, and commit (`git commit -am "your message"`)
|
||||
* I use a [conventional](https://github.com/ajoslin/conventional-changelog/blob/a5505865ff3dd710cf757f50530e73ef0ca641da/conventions/angular.md) changelog format so I can update my changelog using [clog](https://github.com/thoughtram/clog)
|
||||
* In addition to the conventions defined above, I also use `imp`, `wip`, `examples`.
|
||||
* Format your commit subject line using the following format: `TYPE(COMPONENT): MESSAGE` where `TYPE` is one of the following:
|
||||
- `feat` - A new feature
|
||||
- `imp` - An improvement to an existing feature
|
||||
- `perf` - A performance improvement
|
||||
- `docs` - Changes to documentation only
|
||||
- `tests` - Changes to the testing framework or tests only
|
||||
- `fix` - A bug fix
|
||||
- `refactor` - Code functionality doesn't change, but underlying structure may
|
||||
- `style` - Stylistic changes only, no functionality changes
|
||||
- `wip` - A work in progress commit (Should typically be `git rebase`'ed away)
|
||||
- `chore` - Catch all or things that have to do with the build system, etc
|
||||
- `examples` - Changes to existing example, or a new example
|
||||
* The `COMPONENT` is optional, and may be a single file, directory, or logical component. Can be omitted if commit applies globally
|
||||
5. Run the tests (`cargo test --features yaml && make -C clap-tests test`)
|
||||
6. `git rebase` into concise commits and remove `--fixup`s (`git rebase -i HEAD~NUM` where `NUM` is number of commits back)
|
||||
7. Push your changes back to your fork (`git push origin $your-branch`)
|
||||
8. Create a pull request! (You can also create the pull request first, and we'll merge when ready. This a good way to discuss proposed changes.)
|
||||
|
||||
Another really great way to help is if you find an interesting, or helpful way in which to use `clap`. You can either add it to the `examples/` directory, or file an issue and tell me. I'm all about giving credit where credit is due :)
|
||||
|
||||
See [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
|
||||
|
||||
### Running the tests
|
||||
|
||||
If contributing, you can run the tests as follows (assuming you're in the `clap-rs` directory)
|
||||
|
|
Loading…
Reference in a new issue