tldr/pages/common/git-instaweb.md

33 lines
647 B
Markdown
Raw Normal View History

2020-05-10 13:41:53 +01:00
# git instaweb
> Helper to launch a GitWeb server.
2020-05-10 13:41:53 +01:00
> More information: <https://git-scm.com/docs/git-instaweb>.
- Launch a GitWeb server for the current Git repository:
2020-05-10 13:41:53 +01:00
`git instaweb --start`
- Listen only on localhost:
`git instaweb --start --local`
- Listen on a specific port:
`git instaweb --start --port {{1234}}`
- Use a specified HTTP daemon:
2020-05-10 13:41:53 +01:00
`git instaweb --start --httpd {{lighttpd|apache2|mongoose|plackup|webrick}}`
- Also auto-launch a web browser:
`git instaweb --start --browser`
- Stop the currently running GitWeb server:
2020-05-10 13:41:53 +01:00
`git instaweb --stop`
- Restart the currently running GitWeb server:
2020-05-10 13:41:53 +01:00
`git instaweb --restart`