Project

gitpusher

0.01
No commit activity in last 3 years
No release in over 3 years
A command line tool for replicating git repositories from one service to another.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 0
>= 0
 Project Readme

gitpusher

gitpusher is a command line tool for replicating git repositories from one service to another.

$ gitpusher -c default.yml

default.yml is like this.

:base_dir: /var/repos
:src:
  :type: github
:dest:
  :type: bitbucket

With this settings, all of your repositories on GitHub will be replicated to Bitbucket. (User name and password of each service are asked when you run the command first.)

If you would like to replicate GitHub organization's repos instead of your own repos, settings are like this.

:base_dir: /var/repos
:src:
  :type: github
  :organization: github_organization_name
:dest:
  :type: bitbucket

Now this tool supports only replicating from GitHub to Bitbucket.

Parallel processing

You will spend a lot of time when you have many repositories. Now, to save your time, gitpusher supports parallel processing.

You can specify the number of processes by --process, or -p, option.

If you do:

$ gitpusher -c default.yml --process 6

then 6 repositories are processed at a time.