git commit in pre-push hook

后端 未结 1 1922
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-07 17:45

I have added something like that in pre-push hook:

gs0=$(git status)
pip-dump
gs1=$(git status)
if [ \"gs0\" != \"gs1\" ]
then
    git commit -m         


        
相关标签:
1条回答
  • 2021-01-07 18:04

    You can't: the push command figures out which commits to push before invoking the hook, and pushes that if the hook exits 0.

    I see three options:

    1. Exit nonzero, telling the user "push rejected because I added a commit"
    2. Exit zero, telling the user "push went through but you'll need to push again because I added a commit"
    3. Do another (different) push inside the hook, after adding the new commit, taking care that your hook does not endlessly recurse because the "inner" push runs the hook which decides to do another "inner-again" push, etc. Then, exit nonzero, aborting the "outer" push, after announcing that you had to do an "inner" push to get the extra commit sent through.

    My personal preference would be the first of these. A pre-push hook is meant as a "verify that this push is OK" operation, not a "change this push to mean some other different push" operation. So that means you're not working against the "intent" of the software. Use the pre-push hook as a verifier; and if you want a script that invokes git push after automatically adding a pip-dump commit if needed, write that as a script, using a different name, such as dump-and-push.

    0 讨论(0)
提交回复
热议问题