linux-insides/CONTRIBUTING.md
SeongJae Park 1e3bbbea3a CONTRIBUTING: Replace outdated image link
The screenshot for fork button, which was available from tinypic, is not
available now.  This commit replaces it with other image from the Github
Docs site.

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
2020-10-02 08:09:18 +02:00

34 lines
1.1 KiB
Markdown

Contributing
================================================================================
If you want to contribute to [linux-insides](https://github.com/0xAX/linux-insides), please follow these simple rules:
1. Press the fork button:
![fork](https://docs.github.com/assets/images/help/repository/fork_button.jpg)
2. Clone the repository from your account with:
```
git clone git@github.com:your_github_username/linux-insides.git
```
3. Create a new branch with:
```
git checkout -b "linux-bootstrap-1-fix"
```
You can name it however you want.
4. Make your changes.
5. Don't forget to add yourself in `contributors.md`.
6. Commit and push your changes, then make a pull request from Github.
**IMPORTANT**
Please, don't forget to update your fork. While you made your changes, the content of the `master` branch can change because other pull requests were merged and it can create conflicts. This is why you have to rebase on `master` every time before pushing your changes and check that your branch doesn't have any conflicts with `master`.
Thank you.