Skip to main content

Gstore is a simple tool to synchronize GitHub repositories of your organizations.

Project description

Gstore is a simple tool to synchronize GitHub repositories of your organizations.

Overview

This tool uses the GitHub API to get a list of all forked, mirrored, public, and private repos owned by your organizations. If the repo already exists locally, it will update it via git-pull. Otherwise, it will properly clone the repo.

It will organize your repos into the following directory structure:

+ sync-dir
├── organization_1
   ├── repo_1
   ├── repo_2
   ├── ...
   └── repo_n
├── organization_2
   ├── repo_1
   ├── repo_2
   ├── ...
   └── repo_n
└── organization_n
    ├── repo_1
    ├── repo_2
    ├── ...
    └── repo_n

Typical use case

Install

Requirements

Installing Gstore

Installing Gstore is easily done using pip. Assuming it is installed, just run the following from the command-line:

$ pip install gstore

The master of all the material is the Git repository at https://github.com/sergeyklay/gstore . So, you can install development version from the repo as follows:

$ pip install -e git://github.com/sergeyklay/gstore.git#egg=gstore

This command will download the latest version of Gstore from the Python Package Index and install it to your system. The command gstore will be available to you from the command line.

More information about pip and PyPI can be found here:

Alternatively, you can install from the source as follows:

  1. Clone Gstore repository

  2. Run pip install -r requirements.txt

  3. Run the gstore module (directory) as follows:

$ python -m gstore --help

Getting Started

  1. Generate a GitHub Personal Access Token with the following permissions:

    • repo: Full control of private repositories

    • user:read: Read all user profile data

  2. Save the token in a safe place; you’ll need it when use Gstore

Usage

gstore [<options>] [[--] target]

Options:

-h, --help

Show help message and exit.

--token TOKEN

An authentication token for github.com API requests. If not provided via CLI argument, then environment variable will be used. The order of searching for a token in environment variables as follows (in order of precedence):

  1. GH_TOKEN, GITHUB_TOKEN

  2. GH_ENTERPRISE_TOKEN, GITHUB_ENTERPRISE_TOKEN

Setting these variables allows you not to not pass token directly via CLI argument and avoids storing it in the Shell history.

--org [ORG ...]

Organizations you have access to (by default all).

-v, --verbose

Enable verbose mode. Causes Gstore to print debugging messages about its progress in some cases.

-q, --quiet

Silence any informational messages, but not error ones.

-V, --version

Print program’s version information and quit.

-dumpversion

Print the version of the program and don’t do anything else.

[--] target

Base target to sync repos (e.g. folder on disk). If not provided via argument environment variable GSTORE_DIR will be used. If there is not environment variable current working directory will be used.

Examples

Sync all repos from all organizations

The example below will perform 2 API requests. The first is to obtain GitHub username, and the second one to get a list of user’s organizations. At the end Gstore will sync repositories of organizations via Git.

$ gstore --token "$TOKEN" ~/backup

Unless you set the GSTORE_DIR environment variable and don’t provide target directory, Gstore will sync all the repositories to current working directory.:

# Will sync all the repositories to current working directory
$ gstore --token "$TOKEN"

# Will sync all the repositories to ~/work directory
$ export GSTORE_DIR=~/work
$ export GH_TOKEN="secret"
$ gstore

# Will sync all the repositories to ~/backup directory
$ gstore --token "$TOKEN" ~/backup

Sync all repos from Acme organization

To get all repositories of a specific organization, just specify it as follows:

$ gstore --org Acme --token "$TOKEN" ~/backup

To specify a target directory right after organization list use double dash to signify the end of --org option.:

$ gstore --token "$TOKEN" --org Acme -- ~/backup

Sync all repos from Foo, Bar and Baz organizations

To get all repositories of the listed organizations, specify them separated by a space:

$ gstore --token "$TOKEN" --org Foo Bar Baz -- ~/backup

Logging

All informational and error messages produced by Gstore are sent directly to the standard OS streams. Gstore doesn’t have any special tools/options to setup logging to files. Such design was chosen deliberately to not increase Gstore complexity in those aspects where this is not clearly necessary, and also to simplify its administration by end users.

So, informational and error messages produced by Gstore are sent to two separate streams:

  • The regular output is sent to standard output stream (STDOUT)

  • The error messages and the warning ones are sent to standard error stream (STDERR)

The format of the messages generated by Gstore was chosen in such a way as to preserve human readability, but at the same time to allow specialized tools to parse message entries according to a single template.

Let’s look at a few examples to demonstrate the above:

export GH_TOKEN="secret"

# All messages are visible
$ gstore ~/work

# Only informational message are visible
$ gstore ~/work 2>/dev/null

# Only error messages and warnings are visible
$ gstore ~/work 1>/dev/null

# Store logs separately
$ gstore ~/work > info.log 2> err.log

# Store all the logs in the same file
$ gstore ~/work > gstore.log 2>&1

You can control the logging level using the following arguments:

-v, --verbose

Enable verbose mode. Causes Gstore to print debugging messages about its progress in some cases.

-q, --quiet

Silence any informational messages except error ones.

Similar projects

There are some projects similar to Gstore you may be interested in:

Support

Feel free to ask question or make suggestions in our issue tracker.

Changes

To see what has changed in recent versions of Gstore see CHANGELOG.rst.

License

This project is open source software licensed under the GNU General Public Licence version 3. © 2020 Serghei Iakovlev

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gstore-0.1.1.tar.gz (27.1 kB view hashes)

Uploaded Source

Built Distribution

gstore-0.1.1-py3-none-any.whl (25.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page