Bitbucket Backup is a backup tool which clones/pulls all your Bitbucket repositories to your local machine.
Please note:
Development of Bitbucket Backup has stopped, please use SCM Backup instead.
SCM Backup can do everything Bitbucket Backup can, plus:
- it supports more hosters (at the moment: GitHub, Bitbucket)
- it's able to backup multiple users/teams per hoster
- specific repositories can be excluded from backup
For more information, please read:
- Documentation how to use SCM Backup (for users of Bitbucket Backup)
- Why Bitbucket Backup was retired
Plus, version 1 of the Bitbucket API (which Bitbucket Backup uses) is deprecated and will be removed on April 12, 2019 (read the announcement here), which means that Bitbucket Backup will stop working on April 12, 2019.
Bitbucket Backup uses the Bitbucket API to get a list of all your repositories.
Then, it uses Mercurial and/or Git (which need to be installed on your machine if you have at least one repository of the given type) to clone every repository into your local backup folder (or just pull the newest changes if it already is in your local backup folder).
It also checks for each repository, whether it has a wiki (which is a repository itself). If yes, that will be automatically cloned/pulled as well.
System requirements:
Please note that Bitbucket Backup assumes that you have the Mercurial and Git executables in your %PATH%
variable.
(depending on the version, Git may come with a git.exe
AND a git.cmd
- it doesn't matter which one is in the %PATH%
, Bitbucket Backup will find both)
To install Bitbucket Backup on your machine, just run the setup.
If you want a "portable" version without installer, there's a .zip download with the binaries as well (starting with version 1.3.2).
When you run Bitbucket Backup the first time, it will ask you for:
Your Bitbucket username and a previously created app password (see next section for more info)
This user's repositories will be backed up.
Your Bitbucket team name (optional)
If entered, the repositories of that team will be backed up instead of the user's repositories.
The user is still needed for authentication.
A backup folder on your local machine
The folder must already exist, Bitbucket Backup won't create it!
Timeout for pulling (optional, Mercurial only)
By default, Mercurial times out after 60 seconds. You may want to increase that value if you have large repositories or a slow connection.
After that, Bitbucket Backup will run without user interaction, but you can re-enter your data any time by pressing SPACE on startup.
Go into your Bitbucket account settings and create an app password for Bitbucket Backup.
You need to check the following permissions:
Bitbucket will then create a password for you. You must enter this password into Bitbucket Backup!
In mid 2016, Atlassian/Bitbucket changed two things:
At the moment when you log into Bitbucket and change your Bitbucket account to an Atlassian account, your old Bitbucket password doesn't exist anymore. So Bitbucket Backup (which used the old password) stops working until you create an app password with the proper permissions, and use that in Bitbucket Backup.
To support the use case where Bitbucket Backup is scheduled to run as a service task, Bitbucket Backup provides an option that you may use to email the output. To take advantage of this, you will need to configure your SMTP settings in the application configuration file. Instructions on how to do this can be found on the SMTP settings MSDN documentation page.
After the application configuration file is updated, run the application with the --email parameter specifying the email address to send the output to, e.g. --email administrator@mycompany.com
.
Bitbucket Backup creates local repositories and pulls from the remote Bitbucket repositories into the local ones.
Those local repositories are bare repositories, i.e. they don't contain a working directory.
When you look inside the repository directories, you'll see this:
.hg
objects
, refs
, ...) and some filesYour complete history and your source code are in there - you just don't see the actual files.
The repository is backed up without a working directory, because it's not necessary. All the data already exists inside the repository, a second copy of everything in the working directory would just be a waste of space.
The easiest way to restore your working directory is to clone the bare repository that Bitbucket Backup created (called bare-repo
in the examples), which will create a clone with a working directory (called working-repo
in the examples):
hg clone bare-repo working-repo
It's also possible to create the working directory directly inside the bare repository:
cd bare-repo
hg update tip
git clone bare-repo.git working-repo
(Note: It seems the Git tools do not like cloning from a bare repository that does not end in the .git
extension, so Bitbucket Backup automatically appends it to all Git repositories)
For more background information (and the discussion that led to the creation of this section) see this issue.
To create a release build, just run build.bat
or build-setup.bat
in the main folder.
build.bat
will create a new folder named release\bin
with the compiled exe and all necessary files.build-setup.bat
will do the same, and additionally create:
release\msi
folder with a MSI setuprelease\zip
folder with a ZIP file (containing the content of the release\bin
folder)Bitbucket Backup makes use of the following open source projects:
The logo is based on a floppy icon from Wikimedia Commons.
Bitbucket Backup is licensed under the MIT License. See License.rtf for details.