The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Git::ReleaseRepo

DESCRIPTION

This application is for creating and managing a release repository, filled with Git submodules of all the other repositories that comprise the code in your release.

USAGE

    # Clone an existing release repository
    releaserepo clone <release_repo>

    # Or create a new release repository
    mkdir release;
    cd release;
    git init;

    # Add a brand-new submodule to the repository
    releaserepo add Foo git@github.com:Foo.git

    # Update an existing submodule to the latest master/HEAD
    releaserepo add Bar

    # Do the release
    releaserepo release v1.00

COPYRIGHT AND LICENSE

Copyright (c) 2012 Doug Bell (preaction)

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.