Conversation
|
@timburg1, great job! Now that the PR exists, you can update it simply by committing and pushing to the If it's a new commit, you can do Whenever you're about to push, you should first rebase and recompile locally to make sure you have the latest upstream commits and that everything builds correctly on your machine. This is much faster than waiting for the CI builds to complete. git pull --rebase upstream masterWhen you rebase, Git might warn about merge conflicts. If so, you have to fix those manually. Run But that's only if there are conflicts. Most of the time there won't be any conflicts, so you can proceed straight to compile and then push. |
@shoogle asked me to create this test PR because we're troubleshooting my Git setup.