|
| 1 | +## Contributing |
| 2 | + |
| 3 | +First off, thank you for considering contributing to Android Kotlin Examples. |
| 4 | + |
| 5 | +### 1. Where do I go from here? |
| 6 | + |
| 7 | +If you've noticed a bug or have a question, |
| 8 | +[search the issue tracker](https://github.com/irontec/doctrine-entity-trait/issues?q=something) |
| 9 | +to see if someone else has already created a ticket. |
| 10 | +If not, go ahead and [make one](https://github.com/irontec/doctrine-entity-trait/issues/new)! |
| 11 | + |
| 12 | +### 2. Fork & create a branch |
| 13 | + |
| 14 | +If this is something you think you can fix, then |
| 15 | +[fork](https://help.github.com/articles/fork-a-repo) |
| 16 | +and create a branch with a descriptive name. |
| 17 | + |
| 18 | +A good branch name would be (where issue #7 is the ticket you're working on): |
| 19 | + |
| 20 | +```sh |
| 21 | +git checkout -b 7-new-fix-for-fancy-functionality |
| 22 | +``` |
| 23 | + |
| 24 | +#### 3. Did you find a bug? |
| 25 | + |
| 26 | +* **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/irontec/doctrine-entity-trait/issues). |
| 27 | + |
| 28 | +* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/irontec/doctrine-entity-trait/issues/new). |
| 29 | +Be sure to include a **title and clear description**, as much relevant information as possible, |
| 30 | +and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. |
| 31 | + |
| 32 | +* If possible, use the relevant bug report templates to create the issue. |
| 33 | +Simply copy the content of the appropriate template into a .rb file, make the necessary changes to demonstrate the issue, |
| 34 | +and **paste the content into the issue description**: |
| 35 | + |
| 36 | +### 4. Implement your fix or feature |
| 37 | + |
| 38 | +At this point, you're ready to make your changes! Feel free to ask for help; |
| 39 | +everyone is a beginner at first :smile_cat: |
| 40 | + |
| 41 | +### 5. Make a Pull Request |
| 42 | + |
| 43 | +At this point, you should switch back to your master branch and make sure it's |
| 44 | +up to date with Active Admin's master branch: |
| 45 | + |
| 46 | +```sh |
| 47 | +git remote add upstream [email protected]:irontec/doctrine-entity-trait.git |
| 48 | +git checkout master |
| 49 | +git pull upstream master |
| 50 | +``` |
| 51 | + |
| 52 | +Then update your feature branch from your local copy of master, and push it! |
| 53 | + |
| 54 | +```sh |
| 55 | +git checkout 7-new-fix-for-fancy-functionality |
| 56 | +git rebase master |
| 57 | +git push --set-upstream origin 7-new-fix-for-fancy-functionality |
| 58 | +``` |
| 59 | + |
| 60 | +Finally, go to GitHub and |
| 61 | +[make a Pull Request](https://help.github.com/articles/creating-a-pull-request) |
| 62 | +:D |
| 63 | + |
| 64 | +### 6. Keeping your Pull Request updated |
| 65 | + |
| 66 | +If a maintainer asks you to "rebase" your PR, they're saying that a lot of code |
| 67 | +has changed, and that you need to update your branch so it's easier to merge. |
| 68 | + |
| 69 | +To learn more about rebasing in Git, there are a lot of |
| 70 | +[good](http://git-scm.com/book/en/Git-Branching-Rebasing) |
| 71 | +[resources](https://help.github.com/articles/interactive-rebase), |
| 72 | +but here's the suggested workflow: |
| 73 | + |
| 74 | +```sh |
| 75 | +git checkout 7-new-fix-for-fancy-functionality |
| 76 | +git pull --rebase upstream master |
| 77 | +git push --force-with-lease 7-new-fix-for-fancy-functionality |
| 78 | +``` |
0 commit comments