When processing download requests on GitHub, often I want to merge commits with a branch without changes. However, I would like to do something right after the merger. I don't want git commit --amend because it will change the commit I bring, so tracking changes becomes more complicated.
Is there a way for git commit do nothing but post? The reason is because I might want to mention something in the Pull request - a URL pointing to a test case, or specify another pull request so that I can use a commit commit, like Closes #123 , in addition to the original request on pull
source share