eabay / bitbucket-repo-sync
Bitbucket Repo Sync Application
dev-master
2016-07-01 14:46 UTC
Requires
- ext-curl: *
- symfony/console: ^3.1
This package is not auto-updated.
Last update: 2024-11-02 02:54:22 UTC
README
Bitbucket Repo Sync is a small Symfony Console application to keep all your bitbucket git repositories in synced. It utilizes Bitbucket API.
Installation and Usage
Basically, you give your Bitbucket credentials and it clones all your git repositories.
git clone git@bitbucket.org:eabay/bitbucket-repo-sync.git
cd bitbucket-repo-sync
// see http://getcomposer.org/download/ to install composer
php composer.phar install
php console.php bitbucket:sync username password
You can choose the path of repositories:
php console.php bitbucket:sync username password -d /some/where
To get help about the command:
php console.php help bitbucket:sync
Notice that repositories are cloned over HTTPS schema including your username and password. I mean repositories will have origins with URIs like https://username:password@bitbucket.org/…. If this is a security problem for you, don't use the application!
Please use Bitbucket to file issues.