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