Now, I have several PRs that I made against develop-ascareus (as per this tutorial). What should I do to them?
Submit new ones against 3.1.x? Or ask someone to change them? I just do not want to have them delayed more due to this stupid mistake on my part...
Quite yes. The most important part is to properly fill commit message. It must start with the [ticket/<ticket_id>] and short description and end with a new line and PHPBB3-<ticket_id>. This is a requirement which will also automatically bind your PR to issue in the tracker, so you do not need to link it manually.
Edit in a Notepad++ like editor the file or files You commit, then run the command: git add .
Make a m.txt file containing the commit message: [ticket/12345] Ticket Title
PHPBB3-12345
Then run the commands: git commit --file="c:\phpbb\m.txt" git push origin ticket/12345
Create a Pull Request at github.com were the PR Title will be: "[ticket/12345] Ticket Title" and the first line in pull comment will be the last line from the message file: PHPBB3-12345
Last edited by orynider on Tue Dec 04, 2018 10:14 pm, edited 5 times in total.