Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
/ wmuc Public archive

wind me up chuck - a git repository manager

License

Notifications You must be signed in to change notification settings

mfinelli/wmuc

Repository files navigation

Wind Me Up, Chuck

Build Status

A git repository manager.

Installation

$ go get github.com/mfinelli/wmuc

Usage

Specify the repos that you want in a directory with a chuckfile:

# chuckfile

# clone repositories into the same directory
# as the chuckfile
repo "https://github.com/mfinelli/wmuc.git"

# clone repositories into a directory
project "wmuc" do
    repo "https://github.com/mfinelli/wmuc.git"

    # optionally, specify a branch to checkout
    repo "https://github.com/mfinelli/wmuc.git", branch: "dev"
end

Now, to clone any missing repositories run wmuc sync.