Added authors, updated man page and generate changelog on make dist

This commit is contained in:
Jesse van den Kieboom 2009-02-28 14:51:08 +01:00
parent d969e39f29
commit fe8d45bb3f
4 changed files with 46 additions and 5 deletions

View File

@ -0,0 +1 @@
Jesse van den Kieboom <jesse@icecrew.nl>

View File

View File

@ -20,4 +20,14 @@ top_bundledir=`cd "$(bundledir)" && pwd`; \
for i in $(SUBDIRS); do (cd $$i && $(MAKE) top_bundledir="$$top_bundledir" $(AM_MAKEFLAGS) bundle); done; \
zip -r gitg-$(PACKAGE_VERSION).zip $(bundledir) >/dev/null;
.PHONY: bundle
dist-hook: generate-changelog
generate-changelog:
if test -d $(top_srcdir)/.git; then \
git --git-dir=$(top_srcdir)/.git log --date=short \
--stat --pretty=format:'%x01%ad %an <%ae>%n%x01%H%n%n%s%n%n%b' \
| sed -e 's/^/\t/g' -e 's/^\t\x01//g' > $(distdir)/c-l; \
mv $(distdir)/c-l $(distdir)/ChangeLog; \
fi
.PHONY: bundle generate-changelog

View File

@ -1,14 +1,44 @@
.TH GITG 1 "22 Jun 2008"
.SH NAME
\gitg\fP \- Git repository viewer
gitg\fP \- Git repository viewer
.SH SYNOPSIS
.B gitg
.RI [path]
.RI [options]\ [repository]\ [<refspec>]
.SH DESCRIPTION
.B gitg
is a git repository viewer for GNOME
is a GitX clone for GNOME/gtk+. It aims at being a small, fast and
convenient tool to visualize git history and actions that benefit from a
graphical presentation.
.SH OPTIONS
.B \-c,--commit
Open
.B gitg
in commit view
.B \-?,--help
Show the help message
.B [repository]
Load the repository at
.B repository
in
.B gitg.
If unspecified,
.B gitg
will try to open the repository at the current working directory
.B [<refspec>]
Populate the history view of
.B gitg
using the specified
.B <refspec>
which has the same format as used with
.B git log
(Example:
.B gitg
\-\-left\-right HEAD..FETCH_HEAD)
.SH AUTHORS
Jesse van den Kieboom (jesse@icecrew.nl)
Jesse van den Kieboom <jesse@icecrew.nl>