This post is more than three years old so may contain incorrect information, or opinions I no longer hold.

Pull & Backup Multiple GitHub Repositories With This Script

17 Jan 2021 | ~4 minute read

A while back I confessed that I have no idea how to use Git, but since then I've done a lot of work to learn Git and it's now become a crucial part of my workflow. So much so that I now have a number of GitHub repositories on my machines that I use for various projects that I'm involved in.

However, having multiple GitHub repositories to manage can be a bit of a pain. Especially when you do some work on a project, only to find that you're working on an old version when you come to do a git push.

Git versioning is really useful, and being able to clone my projects in multiple places usually means that my data is pretty safe. However, after nearly losing all my data, I now make sure that I follow the 3-2-1 backup rule for all my data.

At least 3 copies of your data, on 2 different storage media, 1 of which needs to be off-site.

– The 3-2-1 backup rule

The problem

So Git is brilliant, but I wanted a way to pull multiple repositories in one go and create a backup of that data too.

My first attempt was to basically have my GitHub folder (which contains all my repositories) stored in my SynologyDrive folder, which then syncs to my Synology automatically.

This worked really well for the most part, but every now and again the .git folder would have collisions between machines and go all wonky. Not ideal, I think you will agree. It also didn't solve the problem of pulling multiple repositories in one go.

The solution - a Git pull & backup script

So I decided to go down the scripting route to achieve what I wanted and I have to say, I'm really happy with the results. It's a very simple script, but it has become a crucial part of my workflow.

All the script really does is cd into every repository folder, run a git pull, the cd back into the parent folder, compress everything with a filename of the current date and time, then move that archive into my SynologyDrive folder so it's synced up to my Synology. The archive is then backed up to multiple locations from my Synology.

So then, let's take a look at the script:

#!/bin/sh

# Pull the latest from all repos on your machine, then run a backup.
cd ~/GitHub/

cd repo1/
echo "Pulling repo 1"
git pull
cd ..

cd repo2/
echo "Pulling repo 2"
git pull
cd ..

cd repo3/
echo "Pulling repo 3"
git pull
cd ..

# Compress everthing in this folder except for .git stuff and generated Jekyll _site
echo "Running a backup"
tar --exclude='*/.git' --exclude='*/_site' -zcf "$(date '+%Y-%m-%d-%H%M').tar.gz" *

# Move the archive to the Synology Drive folder
mv *.tar.gz ~/SynologyDrive/GitHub-Backups
echo "Backup complete"

If you want to use this script, be sure to edit the paths and repository names to ones that are applicable to your system.

Now save that file somewhere that makes sense to you. I personally save it in my SynologyDrive folder as git-pull.sh so it's always available on my machines. The last thing to do is make the file executable. You can do this by right clicking on it, selecting Properties > Permissions and selecting the checkbox that says Allow executing file as program.

Alternatively you can run this command from the terminal:

chmod +x git-pull.sh

That's literally it. Super simple, huh? The output of this script is a single .tar.gz called <date>-<time>.tar.gz. So if I run the script at 13:30 on 14th Jan 2021, the file would be called 2021-01-14-1330.tar.gz.

Making it simple to run

Now I had the script, I wanted a really simple way of running it, so I opted for a bash_alias to do this. If you don't know, a bash_alias is basically a shortcut command within the terminal. So you run a command like pull in the terminal, and the alias knows to run the script we created above.

Creating a bash_alias

There a couple of ways to create an alias in bash. The easiest way is from the command line with the following command:

alias pull="/path/to/the/script/git-pull.sh"

This will add an entry in your .bash_aliases file within your home folder. Once this alias is in place, all we need to do then is open a terminal and run the pull command. The alias will then invoke the GitHub pull/backup script. It doesn't matter what directory we're in as we call the full path in the alias command.

Conclusion

There may well be better ways of pulling and backing up multiple GitHub repositories in one go, but this solution works well for me. You could even go one step further and set your machine to run the pull command on startup. I don't do that though, as I prefer to run it manually.

At some point, I may add further logic to the script that deletes backups older than a certain amount of days. If I get around to doing that, I'll be sure to update this post.

If you have a better way to pull and backup multiple GitHub repositories, feel free to let me know.

Until next time, folks. Kev, out.

← The one before
My Typical Day

Up next →
Trying Out Forestry.io

Get in touch!

Receiving emails from my readers is my favourite thing, so if you have something to say, feel free to drop me an email or sign my guestbook.

Want more content?

Say no more, dear reader. Here's three random posts from this blog for you to peruse:

Updating My Contact Email Automatically
01 Sep 2022

My Static Site Workflow
27 Feb 2023

How To Install Nextcloud On Shared Hosting
16 Jun 2019

Want to be informed when I post new articles? Simply enter your email address below and you will get an email whenever new posts are published.

Alternatively, you can subscribe via RSS instead.

Enjoyed this post?

I put a lot of work into maintaining this site and I really enjoy interacting with my readers.

My fuel of choice is coffee, so if you did enjoy this post, or found it in any way useful, I'd appreciate more fuel to keep me going. ❤️

Buy me a coffee