wangyang0918 commented on pull request #14512:
URL: https://github.com/apache/flink/pull/14512#issuecomment-756042313


   @blublinsky Do you mean you have delete the fork repository manually? I just 
want to share how I develop the PRs.
   * Fork the flink project 
   * Add the forked remote repository to local, `git remote add myfork 
https://github.com/xxxx/flink.git`. Then you could have at least following two 
remote repositories.
   ```
   myfork       https://github.com/xxxx/flink.git (fetch)
   myfork       https://github.com/xxxx/flink.git (push)
   upstream     https://github.com/apache/flink.git (fetch)
   upstream     https://github.com/apache/flink.git (push)
   ```
   * Checkout a new branch(e.g. `ownerreference`) from master(`upstream` 
repository)
   * Develop the PR and push to myfork. `git push myfork ownerreference`
   * Create the PR in the github
   * Address the comments, update the PR and force push. `git push -f myfork 
ownerreference`
   * The PR should be updated.


----------------------------------------------------------------
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:
us...@infra.apache.org


Reply via email to