MartijnVisser commented on pull request #19265: URL: https://github.com/apache/flink/pull/19265#issuecomment-1082780543
@LongWangXX Unfortunately I can't push to your branch. What you need to do is run the following command: 1. Make sure that you have Flink's Git repo added as a Git remote. You can verify that by running `git remote -v`. It should display a link to your fork (most likely called `origin`). It should also have a link to apache/flink. If that's not there, you can add it by running `git remote add upstream [email protected]:apache/flink.git`. If you now run `git remote -v` you will see two Git remotes. 1. Checkout your local branch 2. Run `git fetch upstream` to fetch all changes 3. Run `git rebase upstream/master` to rebase your local branch to Flink's master branch 4. Run a `git push --force` to push your rebased local branch -- 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]
