potiuk commented on pull request #19259: URL: https://github.com/apache/airflow/pull/19259#issuecomment-954054438
There is the part about Rebase here: https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst#id15 Basically you need to learn that `force --push` is ok for your branch and how to move your changes on top of latest `main` of the `apache' repo. What you should usually do: a) synchronize `apache` repo main with yours periodically (This can be done from the GUI of GitHub) b) do not use your local `main` to develop changes - create branch for every time you doc c) rebase your "development" branch on top of your local main and `push --force` it. You can close this PR and open a new one (as this one was created from your `main` which is not the best idea - especially if you will work on several changes in parallel, which is not uncommon. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
