Git Product home page Git Product logo

fork-go-ghbackup's Introduction

๐Ÿ’พ ghbackup

GoDoc Build Status Go Report Card

Backup your GitHub repositories with a simple command-line application written in Go.

The simplest way to keep your repositories save:

  1. Install ghbackup
  2. Get a token from https://github.com/settings/tokens
  3. ghbackup -secret token /path/to/backup/dir

This will backup all repositories you have access to.


Embarrassing simple GitHub backup tool

Usage: ghbackup [flags] directory

  directory  path to save the repositories to

At least one of -account or -secret must be specified.

Flags:
  -account string
        GitHub user or organization name to get repositories from.
        If not specified, all repositories the authenticated user has access to
will be loaded.
  -secret string
        Authentication secret for GitHub API.
        Can use the users password or a personal access token (https://github.c
om/settings/tokens).
        Authentication increases rate limiting (https://developer.github.com/v3
/#rate-limiting) and enables backup of private repositories.
  -silent
        Suppress all output
  -version
        Print binary version

For more visit https://qvl.io/ghbackup.

Install

  • Note that ghbackup uses git under the hood. Please make sure it is installed on your system.

  • With Go:

go get qvl.io/ghbackup
brew install qvl/tap/ghbackup

Automation

Mostly, we like to setup backups to run automatically in an interval.

Let's setup ghbackup on a Linux server and make it run daily at 1am. This works similar on other platforms. There are different tools to do this:

systemd and sleepto

Also see this tutorial.

systemd runs on most Linux systems and using sleepto it's easy to create a service to schedule a backup.

  • Create a new unit file:
sudo touch /etc/systemd/system/ghbackup.service && sudo chmod 644 $_
  • Edit file:
[Unit]
Description=GitHub backup
After=network.target

[Service]
User=jorin
ExecStart=/PATH/TO/sleepto -hour 1 /PATH/TO/ghbackup -account qvl /home/USER/github
Restart=always

[Install]
WantedBy=multi-user.target
  • Replace the paths with your options.

  • Start service and enable it on boot:

sudo systemctl daemon-reload
sudo systemctl enable --now ghbackup
  • Check if service is running:
systemctl status ghbackup

Cron

Cron is a job scheduler that already runs on most Unix systems.

  • Run crontab -e
  • Add a new line and replace NAME and DIR with your options:
0 1 * * * ghbackup -account NAME DIR

For example:

0 1 * * * ghbackup -account qvl /home/qvl/backup-qvl

Sending statistics

The last line of the output contains a summary. You can use this to collect statistics about your backups. An easy way would be to use a Slack hook and send it like this:

ghbackup -secret $GITHUB_TOKEN $DIR \
  | tail -n1 \
  | xargs -I%% curl -s -X POST --data-urlencode 'payload={"text": "%%"}' $SLACK_HOOK

What happens?

Get all repositories of a GitHub account. Save them to a folder. Update already cloned repositories.

Best served as a scheduled job to keep your backups up to date!

Limits

ghbackup is about repositories. There are other solutions if you like to backup issues and wikis.

Use as Go package

From another Go program you can directly use the ghbackup sub-package. Have a look at the GoDoc.

Development

Make sure to use gofmt and create a Pull Request.

Releasing

Push a new Git tag and GoReleaser will automatically create a release.

License

MIT

fork-go-ghbackup's People

Contributors

jorinvo avatar svyotov avatar danieldiekmeier avatar caarlos0 avatar bradleyfalzon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.