tldr/pages.fr/common/git-instaweb.md

33 lines
680 B
Markdown
Raw Normal View History

2020-11-10 11:17:06 +00:00
# git instaweb
> Outil pour le lancement d'un serveur gitweb.
> Plus d'informations : <https://git-scm.com/docs/git-instaweb>.
2020-11-10 11:17:06 +00:00
- Démarre un serveur gitweb depuis le dépôt (`repository`) courant :
2020-11-10 11:17:06 +00:00
`git instaweb --start`
- Écoute uniquement sur le port localhost :
2020-11-10 11:17:06 +00:00
`git instaweb --start --local`
- Écoute sur un port spécifique :
2020-11-10 11:17:06 +00:00
`git instaweb --start --port {{1234}}`
- Utiliser un daemon http spécifique :
2020-11-10 11:17:06 +00:00
`git instaweb --start --httpd {{lighttpd|apache2|mongoose|plackup|webrick}}`
- Lancer en même temps qu'un navigateur web :
2020-11-10 11:17:06 +00:00
`git instaweb --start --browser`
- Stoppe le serveur :
2020-11-10 11:17:06 +00:00
`git instaweb --stop`
- Redémarre le serveur :
2020-11-10 11:17:06 +00:00
`git instaweb --restart`