ambition119 commented on issue #603: [HUDI-63] Removed unused BucketedIndex code URL: https://github.com/apache/incubator-hudi/pull/603#issuecomment-475485921 > Hmmm I usually do the following workflow. > > ``` > git fetch origin > git fetch hudi # replace with whatever is your remote pointing to apache/incubator-hudi > git checkout master > git rebase hudi/master > git checkout your-branch > git rebase master # resolve conflicts if any, run tests again > git push origin your-branch --force # this updates the PR > ``` > @ambition119 does that help For almost the same operation, the commands I use are as follows: ```shell $ git remote add apache https://github.com/apache/incubator-hudi.git $ git fetch apache $ git rebase apache/master $ git push // or git push origin master $ git checkout -b hudi_63 ``` then hudi_63 branch dev and pull request merge. thank you!
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
