Last active
May 27, 2024 01:49
-
-
Save nixjobin/8ed1fed08549b2cefdbf to your computer and use it in GitHub Desktop.
bitbucket-backup-all-repos.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Author Jobin Joseph | |
#Blog : nixhive.com | |
#Bio : JobinJoseph.com | |
#Bitbucket credentials | |
bbuser='Username_here' | |
bbpass='password_here' | |
fname=`date +%F_%H_%M` | |
backloc="/backups/bitbucket" #backup location | |
cd $backloc | |
bitbucket_get_urls () { | |
rm -f bitbucketurls | |
curl --user $bbuser:$bbpass https://bitbucket.org/api/1.0/user/repositories > bitbucket.1 | |
tr , '\n' < bitbucket.1 > bitbucket.2 | |
tr -d '"{}[]' < bitbucket.2 > bitbucket.3 | |
#Processing | |
cat bitbucket.3 |grep -i uri |cut -d":" -f2 >bitbucket.4 | |
sed 's/\/1\.0\/repositories\///g' bitbucket.4 > bitbucket.5 | |
cat bitbucket.5 |grep $bbuser > bitbucket.6 | |
#make it a gir utl | |
for i in `cat bitbucket.6` ;do | |
echo "[email protected]:$i.git" >> bitbucketurls | |
rm -f bitbucket.* | |
done | |
} | |
bb_backup () { | |
rm -rf `cat VERSION` | |
echo $fname > VERSION | |
mkdir $fname | |
cd $fname | |
#bare clone | |
for repo in `cat ../bitbucketurls` ; do | |
echo "========== Cloning $repo ==========" | |
git clone --bare $repo | |
done | |
} | |
#Backup Starts here | |
bitbucket_get_urls | |
bb_backup | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment