1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-18 11:20:00 +00:00

Created How to merge a PR (markdown)

Christian Schabesberger 2018-08-28 13:01:21 +02:00
parent 87332e7624
commit ab220dc447

10
How-to-merge-a-PR.md Normal file

@ -0,0 +1,10 @@
1. Create you PR (ideally ask in an issue if that is a good idea what you want to do)
2. Wait for a Maintainer review
3. Do the requested changes
4. Rebase with `dev` if its necessary:
```
git checkout dev
git pull
git checkout <the_branch_im_working_in>
git rebase dev
```