repobrowse.git  about / heads / tags
an old-fashioned repository browser
$ git log --pretty=format:'%h %s (%cs)%d'
0514ac1 repobrowse 0.0.0 (2018-07-15)
	(HEAD -> master, tag: v0.0.0)
5931a29 sorta kinda working  Lets release! (2018-07-15)
b81cb71 git clone works (2017-12-14)

$ git cat-file blob HEAD:README
repobrowse - old-fashioned repository browser
---------------------------------------------

A repository browser with only basic HTML and text; free of
images and JavaScript.  It is intended as a companion to
public-inbox[1] but may be used on its own.  It only supports
git for now, but support for other Free Software version control
systems may happen.

Features
--------

* low bandwidth usage
* git smart HTTP clone/fetch support
* optional public-inbox integration

[1] public-inbox is an "archives first" approach to mailing lists
    https://public-inbox.org/

Contact
-------

All discussion is archived via public-inbox:

	https://80x24.org/repobrowse-public/
	nntp://80x24.org/inbox.comp.version-control.repobrowse

No subscription will ever be required to mail us, but HTML mail
will be rejected:

		repobrowse-public@80x24.org


repobrowse is Copyright (C) 2018 all contributors <repobrowse-public@80x24.org>
License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# heads (aka `branches'):
$ git for-each-ref --sort=-creatordate refs/heads \
	--format='%(HEAD) %(refname:short) %(subject) (%(creatordate:short))'
  WIP-solve    wip-solver (2018-09-08)
  solve        git_commit_html: avoid binary encoding from String#pack (2018-09-06)
* master       repobrowse 0.0.0 (2018-07-15)

# tags:
$ git for-each-ref --sort=-creatordate refs/tags \
	--format='%(refname:short) %(subject) (%(creatordate:short))'
v0.0.0       repobrowse 0.0.0 (2018-07-15) tar.gz

git clone https://80x24.org/repobrowse.git