0.02
No commit activity in last 3 years
No release in over 3 years
Backup GitHub repositories to BitBucket
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.1.7, ~> 0.1
>= 0.7.7, ~> 0.7
= 0.13.1
>= 1.7.8, ~> 1.7
 Project Readme

Backup On The Go

RubyGems | RDocs

Back up (or mirror) your GitHub repositories to BitBucket.

Install

gem install backup_on_the_go

Run Locally

Shortcut:

Back up your personal repositories (will back up your repositories to BitBucket with a prefix of backup-on-the-go-):

backup-on-the-go user:your_user_name

Back up your personal repositories to a different account on BitBucket:

backup-on-the-go github_user:user_name_on_github bitbucket_user:user_name_on_github

Back up your organization repositories:

backup-on-the-go user:your_user_name github_repos_owner:organization_name bitbucket_repos_owner:team_name

For more options, see the parameters of BackupOnTheGo.backup.

Run in the Cloud

You can deploy to some cloud services to run the backup timely.

Deploy to Heroku

If you are new to Heroku, first go to Heroku website to create an account, install Heroku Toolbelt, and run heroku login to login.

Run the following command to obtain the pre-prepared files for deploying:

git clone -b heroku git://github.com/xuhdev/backup-on-the-go.git
cd backup-on-the-go
bundle
heroku create

Then edit backup.rb to configure your backup. After configuring, you may wanna run foreman start to test locally. Then:

git commit -a -m "My initial backup commit."
git push heroku heroku:master

NOTE: Don't push to any public repositories, since your password is there!

At last, you need to scale your dyno formation in order to run the backup dyno instead of the web dyno:

heroku scale web=0 worker=1

Done!

Real World Examples

For a real world example, you can check my backup BitBucket Account. For another example of backing up organizations, see EditorConfig on GitHub and BitBucket.