GIT pre-receive hook

无人久伴 提交于 2019-11-28 03:56:42

问题


Is there a way to change the file that is being pushed to the server using a server-side pre-receive hook?

Say I want to add something to the end of a file like:

//End of Org

each time someone pushes to my repo.

Is there a way you can change the file coming in using git hooks?


回答1:


I would rather use a filter driver which can operate on the content of each file in order to check if your line is there and add it if not, during the checkout step.

That would be:

  • a smudge script
  • able to be replicated when your repo is cloned (as opposed to hooks which are not copied over when cloning a repo unless you use a template directory)



回答2:


Just for completeness sake: it should be rather obvious from the name that what you are asking for, is simply impossible. The pre-receive hook cannot change any files, because it hasn't received any yet!



来源:https://stackoverflow.com/questions/3615426/git-pre-receive-hook

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!