bossenti commented on PR #1303: URL: https://github.com/apache/streampipes/pull/1303#issuecomment-1436047835
@flomickl Alright, there we are :) The `rebase` command modifies the branch history. Therefore, a simple `git push` is not sufficient if you want to fully update the remote branch with your local change. nstead, you must use the `--force-with-lease` parameter for `git push` (is the default when doing a `force push` in IntelliJ). This will fully apply your local change as long as no one else has added commits that are not in your 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]
