Skip to content
Domenico Rotiroti edited this page Feb 25, 2014 · 20 revisions

repos-tools

Utilities to work faster and easier on your code repositories

  • repost: push, pull, build and do things on all of your repos, or some of them

It needs the PHP cli.

Run sudo make install to install.

repost

repost is a script to perform simple tasks on your repositories at once.
See the repost wiki page for detailed help.

Run it with no arguments to see available options:

Usage: repost <action> [<repolist>]
Actions:
    backup  make a tarball with the project(s) directory
    build   build with make or ant
    diff    show what's changed in your working directories
    list    list repositories
    log     show last commit logs
    pull    pull repositories from origin/parent
    push    push repositories to origin/parent
    status  show statuses
<repolist> can be one of:
    * all   (the default) apply command to all the repositories
    * this  apply command the the current working directory
    * a comma separated list of repository names, types or aliases. Eg.
      repost build repo1,repo2        => builds repositories repo1 and repo2
      repost push git:                => push all Git repositories to origin
      repost pull @mine               =>  pull all repos aliased to 'mine'
or you can execute any command with 'repost do <repolist> <command>'

Copyright and license

repos-tools is Copyright © 2010-2014 Domenico Rotiroti.

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as
 published by the Free Software Foundation, version 3 of the License.
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Lesser General Public License for more details.
 A copy of the GNU Lesser General Public License is included in the
 source distribution of this software.
Clone this wiki locally