Skip to content

git-feed: a script to generate Atom feeds for git commit logs

License

Notifications You must be signed in to change notification settings

Adapts/git-feed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NAME

git-feed - generate an Atom feed of git commits in the current repository

SYNOPSIS

git-feed [ --project_url=... ]

DESCRIPTION

I keep a lot of projects in git, and I like to provide feeds for things I'm working on. This script wraps git and XML::Atom::SimpleFeed to generate a basic Atom feed of commits. It tries to use information already available in the environment, but needs to be given a URL for your project (and probably for the feed itself).

It can be configured for a given repository by doing something like the following:

git config feed.projecturl https://p1k3.com/userland-book/
git config feed.url https://p1k3.com/userland-book/feed.xml
echo 'userland: a book about the command line for human beings' > .git/description

I have no idea whether this sort of thing is considered an acceptable use of git configuration, but it seems to work.

...or you can supply various options on the command line.

--project_url=...

    Set a URL for the project.

--feed_url=...

    Set an explicit URL for the feed itself.

--title=...

    Set an explicit title for the feed. Will otherwise be read from .git/description, if available.

--entries=n

    Explicitly request n entries. Defaults to 10.

--author=...

    Explicitly set an author string. Defaults to git config's current idea of user.name.

EXAMPLES

git feed --project_url=https://p1k3.com/userland-book/ > feed.xml

INSTALLING

I'll wrap this in a module and add a build script. For now, install XML::Atom::SimpleFeed first. I would probably do that either with:

cpanp -i XML::Atom::SimpleFeed

or:

apt-get install libxml-atom-simplefeed-perl

...depending on which one gave me less static on a given system. I don't really know what I'm doing in the Perl ecosystem any more, though.

AUTHOR

Brennen Bearnes <[email protected]>

LICENSE

This utility is free software, licensed under the terms of the GPL, v2. See COPYING for a complete copy of the license.

About

git-feed: a script to generate Atom feeds for git commit logs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published