Skip to content
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.

bit3archive/mgpm

Repository files navigation

MultiGitProjectManager

MGPM helps you manage hundreds of projects to keep in sync with their remote repository.

Quick start

(1) create a new directory to store the projects in:

$ mkdir ~/my-projects

(2) put a mgpm.yml (see wiki for more detailed example) into this repository:

$ echo 'repositories:
  -
    type: github
    owner: bit3
' > ~/my-projects/mgpm.yml

(3) download the latest build:

$ wget 'https://github.com/bit3/mgpm/releases/download/1.0.0-SNAPSHOT.12/mgpm-1.0.0-SNAPSHOT.12.jar' \
       -O ~/Downloads/mgpm.jar

(4) start mgpm in this directory:

$ cd ~/my-projects
$ java -jar ~/Downloads/mgpm.jar -i

HAVE FUN!!!