2015-01-04 18:03:20 +00:00
Contributing
================================================================================
2015-02-02 18:00:32 +00:00
If you want to contribute to [linux-insides ](https://github.com/0xAX/linux-insides ), please follow these simple rules:
2015-01-04 18:03:20 +00:00
1. Press fork button:
2015-01-18 04:13:25 +00:00
![fork ](http://oi58.tinypic.com/jj2trm.jpg )
2015-01-04 18:03:20 +00:00
2. Clone the repo from your account with:
2015-01-18 04:13:25 +00:00
```
git clone git@github.com:your_github_username/linux-insides.git
```
2015-01-04 18:03:20 +00:00
3. Create branch with:
2015-01-18 04:13:25 +00:00
```
git checkout -b "linux-bootstrap-1-fix"
```
2015-01-04 18:03:20 +00:00
2015-01-05 07:03:17 +00:00
4. Make your changes.
5. Don't forget to add yourself in `contributors.md`
2015-01-04 18:03:20 +00:00
**IMPORTANT**
2015-04-19 19:15:28 +00:00
Please, make the actual changes. While you made your changes, I can merge changes from somebody else and your changes can conflict with `master` branch content. Please rebase on master every time before you're going to push your changes and check that your branch doesn't conflict with `master` .
2015-01-04 18:03:20 +00:00
2015-04-19 19:15:28 +00:00
Thank you.