我已经按照本教程“使用 Git 管理网站”,使用 Tower 提交本地存储库并将其推送到远程服务器。推送成功并显示以下消息:
Pushing to ssh://user@mysite.com/~/git/tprevo.git
stdin: is not a tty
Counting objects: 40, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (37/37), done.
Writing objects: 100% (40/40), 171.95 KiB, done.
Total 40 (delta 3), reused 0 (delta 0)
To ssh://user@mysite.com/~/git/tprevo.git
* [new branch] master -> production
updating local tracking ref 'refs/remotes/production/production'
Successfully created tracking connection.
我已经验证了我的 post-receive 挂钩正在执行,但是该checkout
命令没有将推送的代码添加到我认为我已经设置为我的工作目录的目录中。我整天都在想办法解决这个问题。
收到后:
#!/bin/sh
GIT_WORK_TREE=/home/tprevo/public_html/tprevo git checkout -f
我是 Git 新手,非常渴望学习。调试这个的最佳方法是什么?