Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/donno2048/gitback

The easiest way to makes a backup of all your repositories and gists from GitHub using Python
https://github.com/donno2048/gitback

backup backup-script backup-tool backups gist gists github http pip pypi pypi-package python python-3 python3 repository ssh zip zipfile

Last synced: about 2 months ago
JSON representation

The easiest way to makes a backup of all your repositories and gists from GitHub using Python

Awesome Lists containing this project

README

        

# gitback

Makes a backup of all your repositories and gists from GitHub

## Install

(On Linux you'll need to use `sudo`)

### From PyPI

```sh
pip3 install gitback
```

### From GitHub

```sh
pip3 install git+https://github.com/donno2048/gitback
```

## Usage

You can also use `git backup` instead of `gitback`.

```py
usage: gitback [-h] [-n] [-P] [-s] [-f] [-z] [-q] [-u] [-p] [-r | -g]

Makes a backup of all your repositories and gists from GitHub

optional arguments:
-h, --help show this help message and exit
-n, --name Use a custom name for your backup [default: backup]
-P, --path Use a custom path for your backup [default: current working directory]
-s, --ssh Use ssh cloning [default: http]
-f, --full Clone with full git history
-z, --zip Make a zip file of the backup
-q, --quiet Don't see cloning progress
-u, --username Your GitHub username
-r, --repos Backup only repos
-g, --gists Backup only gists
```

### Example

Let's say I want to backup only my gists, and I want a zip file:

```sh
gitback -u donno2048 -g -z
```