创建post-接收文件
Create post-receive file
我正在尝试将我的 hostgator 配置为使用 git。
我已经关注这个steps
但在我的 .git/hooks 文件夹中,没有人 post-receive.
仅文件:
./ post-update.sample* prepare-commit-msg.sample*
../ pre-applypatch.sample* update.sample*
applypatch-msg.sample* pre-commit.sample*
commit-msg.sample* pre-rebase.sample*
如何创建 post-接收文件?
感谢
虽然没有示例 post-receive 挂钩,但您可以通过在 .git/hooks
目录中创建文件 post-receive
来创建一个。您可以使用任何文本编辑器执行此操作,例如 nano
或 vi
(例如 nano .git/hooks/post-receive
)。
为了使挂钩起作用,您还需要将其设置为可执行文件,您可以使用 chmod +x .git/hooks/post-receive
.
我正在尝试将我的 hostgator 配置为使用 git。
我已经关注这个steps
但在我的 .git/hooks 文件夹中,没有人 post-receive.
仅文件:
./ post-update.sample* prepare-commit-msg.sample*
../ pre-applypatch.sample* update.sample*
applypatch-msg.sample* pre-commit.sample*
commit-msg.sample* pre-rebase.sample*
如何创建 post-接收文件?
感谢
虽然没有示例 post-receive 挂钩,但您可以通过在 .git/hooks
目录中创建文件 post-receive
来创建一个。您可以使用任何文本编辑器执行此操作,例如 nano
或 vi
(例如 nano .git/hooks/post-receive
)。
为了使挂钩起作用,您还需要将其设置为可执行文件,您可以使用 chmod +x .git/hooks/post-receive
.