glitch 如何自动更新 github上的代码
时间: 2024-06-10 12:03:51 浏览: 148
自动更新代码
Glitch可以使用Webhook以从Github自动更新代码。您可以在“Tools”菜单中找到一个名为“+New Terminal”的选项,在此处您可以运行Git命令,在Terminal中运行以下命令可以设置GitHub Webhook
```
curl -v -H "Content-Type: application/json" -X POST -d '{"name": "web", "active": true, "events": ["push"], "config": {"url": "https://your-glitch-project.glitch.me/github-webhook", "content_type": "json"}}' https://api.github.com/repos/{username}/{repository-name}/hooks?access_token={github-access-token}
```
替换`{username}`、`{repository-name}`和`{github-access-token}`。您可以在这里找到有关如何生成GitHub Access Token的更多信息:https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line
这将设置一个名为“web”的GitHub Webhook,并在您每次进行推送时自动将您的GitHub代码更新到Glitch。
阅读全文