potiuk commented on PR #53589:
URL: https://github.com/apache/airflow/pull/53589#issuecomment-3121788761

   Also - good advice - only ever "REBASE" your changes on top of other's 
changes - Ideally git-squash them so that you every have to only rebase a 
single commit - which makes it easier:
   
   `git rebase HEAD^ --onto=<branch-you-want-to-rebase-on>`
   
   If you have multiple commits you want to keep separate:
   
   `git rebase <FIRST_COMMIT_THAT_IS_NOT_YOURS> 
--onto=<branch-you-want-to-rebase-on>`


-- 
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]

Reply via email to