stagit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

stagit-index.1 (935B)


      1 .Dd August 2, 2021
      2 .Dt STAGIT-INDEX 1
      3 .Os
      4 .Sh NAME
      5 .Nm stagit-index
      6 .Nd static git index page generator
      7 .Sh SYNOPSIS
      8 .Nm
      9 .Op Ar repodir...
     10 .Sh DESCRIPTION
     11 .Nm
     12 will create an index HTML page for the repositories specified and writes
     13 the HTML data to stdout.
     14 The repos in the index are in the same order as the arguments
     15 .Ar repodir
     16 specified.
     17 .Pp
     18 The content of the follow files specifies the meta data for each repository:
     19 .Bl -tag -width Ds
     20 .It .git/description or description (bare repos).
     21 description
     22 .It .git/owner or owner (bare repo).
     23 owner of repository
     24 .El
     25 .Pp
     26 For changing the style of the page you can use the following files:
     27 .Bl -tag -width Ds
     28 .It favicon.png
     29 favicon image.
     30 .It logo.png
     31 32x32 logo.
     32 .It style.css
     33 CSS stylesheet.
     34 .El
     35 .Sh EXAMPLES
     36 .Bd -literal
     37 cd htmlroot
     38 stagit-index path/to/gitrepo1 path/to/gitrepo2 > index.html
     39 .Ed
     40 .Sh SEE ALSO
     41 .Xr stagit 1
     42 .Sh AUTHORS
     43 .An Hiltjo Posthuma Aq Mt hiltjo@codemadness.org