Last active
December 24, 2015 15:09
-
-
Save bkerley/6818362 to your computer and use it in GitHub Desktop.
basho repos i'm mirroring
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
mirror() { | |
local repo="$1" | |
(cd "$repo.git" && git fetch -q && git gc) || (git clone --bare "https://github.com/basho/$repo.git") | |
} | |
cd $WORKSPACE | |
mirror riak-ruby-client | |
mirror riak-java-client | |
mirror riak-erlang-client | |
mirror riak-python-client | |
mirror riak | |
mirror riak_kv | |
mirror riak_core | |
mirror eleveldb | |
mirror yokozuna | |
mirror node_package | |
mirror cuttlefish | |
mirror riak_test | |
mirror riak_pipe | |
mirror riak_dt | |
mirror riak_control | |
mirror leveldb | |
mirror riak_api | |
mirror bitcask | |
mirror stanchion | |
mirror riak_cs | |
mirror webmachine | |
mirror riak_pb | |
mirror mochiweb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment