如果 git 代码中的 'debugger' 不推送
Don't push if the 'debugger' in code by git
我正在使用 git 和 Bitbucket,如果代码中有任何 debugger
字,我不想推送。可能吗?我该怎么做?
谢谢
你应该使用 git 钩子。
有关详细信息,请参阅:https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks and https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks#Client-Side-Hooks。
我认为,您可以使用预提交或预推送,具体取决于您希望如何限制自己。
我正在使用 git 和 Bitbucket,如果代码中有任何 debugger
字,我不想推送。可能吗?我该怎么做?
谢谢
你应该使用 git 钩子。 有关详细信息,请参阅:https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks and https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks#Client-Side-Hooks。
我认为,您可以使用预提交或预推送,具体取决于您希望如何限制自己。