基本上就是這樣說的。想象一下以下鉤代碼: @echo on
echo.
echo.
echo.
echo %CD% :: Try to print the current dir
echo %GIT_DIR% :: Try to print the Git dir
echo.
echo.
ping 127.0.0.1 -t :: Loop on localhost, becau
我正在嘗試編寫一個git pre-commit鉤子來檢查在提交之前是否再次修改了使用git add分段的文件。 基本上我很感興趣,這些文件 git status --short
MM test1
AM test2
現在pre-commit鉤子看起來是這樣的: #!/bin/bash
# git pre-commit hook that checks for staged files t
我想要一個預先提交的git鉤子來檢查(並且,如果可能的話,autoremoves)尾隨空格。 在Make git automatically remove trailing whitespace before committing我發現了一個link to a github page,其中實現了這樣一個鉤子。這工作得很好,但作爲@VonC 該頁面 上提到由於那個勾獲取每個文件的文件名,我會推薦給