Hello,
To backup a Bitbucket repository, I've setup an automated process.
The first time, I mirrored the repository once :
ssh-agent bash -c 'ssh-add /root/.ssh/private_key; git clone --mirror git@bitbucket.org:TeamName/repo.git'
Then on a weekly basis, I do :
cd repo.git/
ssh-agent bash -c 'ssh-add /root/.ssh/private_key; git remote update'
git bundle create /root/tmp/repo-`date +%Y%m%d` --all
I would like to test this by importing this into a new test-repository on Bitbucket cloud. How do I proceed with this?
I tried the following:
git init --bare testrepo.git
cd testrepo.git
git bundle unbundle /root/tmp/repo-`date +%Y%m%d`
How do I import this into the Bitbucket test repository?
Hello Tim!
Let me try to help you with your question.
The following steps are commonly used to push a local repository to bitbucket:
Let me know if this helps you!
Regards,
Bernardo
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.