Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想这样做,以便定期推送我的 GitHub 存储库将更新网页上的代码,以便我可以立即使用我的移动设备在任何地方对其进行测试(我一直依赖python -m SimpleHTTPServer,这是垃圾。我的意思是整洁,但显然不是为解决我的移动设备产生的昏昏欲睡的 HTTP 连接而设计的。
python -m SimpleHTTPServer
这可以使用某种git东西来完成,我可以获得第二个远程仓库以从另一个仓库自动拉取更改吗?或者其他的东西?
git
这就是gh-pages分支吗?
gh-pages
哦,我想是这个。
http://xlson.com/2010/11/09/getting-started-with-github-pages.html
大概就是这个了。听起来很有趣。
gh-pages 分支允许您在本地更新 html 文件并将其推送到 github Web 服务器,该服务器从http://youruser.github.com/yourproject.
http://youruser.github.com/yourproject
github 提供了一些自动工具,用于从 README.md(markdown 格式,此处用于格式化问答)引导网站,例如自动生成器,或使用Jekill的站点+博客静态站点生成器。在 github 上,还有其他几种可以与 gh-pages 一起使用的替代方案。