1
我寫了一個post-receive
掛鉤從其他人推動時從中央拉開。
我的問題是,我看到:如何避免「git post-receive hook - remote:git:'pull'不是git命令,請參閱'git --help'」?
remote: git: 'pull' is not a git command. See 'git --help'.
然而,當我手動拉,一切都OK。
有我的鉤:
dir=${PWD##*/}
cd "/cygdrive/d/repos/.non-bare/$dir"
unset GIT_DIR
git pull
你會如何解決,以避免該錯誤消息鉤子?
仍然沒有工作。 – bglow
@bglow是否可以在你的hook中添加一個'echo/cygdrive/d/repos/.non-bare/$ dir'來查看顯示的路徑是否確實是回購的路徑之一? (其中一個帶有'.git'文件夾) – VonC
是的,它就是那個文件夾 – bglow