Tools for working with upstream repositories
Project description
git river
git-river
is a tool designed to make it easier to work with large
numbers of GitHub and GitLab projects and "forking" workflow that involve
pulling changes from "upstream" repositories and pushing to "downstream"
repositories.
git-river
will manage a "workspace" path you configure, cloning repositories
into that directory with a tree-style structure organised by domain, project
namespace, and project name.
$ tree ~/workspace
~/workspace
├── github.com
│ └── datto
│ └── git-river
└── gitlab.com
└── datto
└── git-river
Links
Installation
git-river
requires Python 3.9 or above.
pip3 install git-river
Usage
Run git-river <subcommand>
. Git's builtin aliasing also allows you to
run git river
instead.
Before you can use git-river
you must configure a workspace path by running
git-river init PATH
or setting the GIT_RIVER_WORKSPACE
environment variable.
This should point to a directory git-river
can use to clone git repositories
into.
Several commands will attempt to discover various names, and usually have an option flag to override discovery.
- The "upstream" remote is the first of
upstream
ororigin
that exists. Override with--upstream
. - The "downstream" remote is the first of
downstream
that exists. Override with--downstream
. - The "mainline" branch is the first of
main
ormaster
that exists. Override with--mainline
.
Subcommands
-
git river clone URL...
clones a repository into the workspace path. -
git river config
manages the configuration file.git river config display
prints the loaded configuration as JSON. Credentials are redacted.git river config init
creates an initial config file.git river config workspace
prints the workspace path.
-
git river forge
manages repositories listed by GitHub and GitLab.git river forge
runs theclone
+archived
+configure
+remotes
subcommands.git river forge clone
clones repositories.git river forge configure
sets git config options.git river forge fetch
fetches each git remote.git river forge list
displays remote repositories that will be cloned.git river forge remotes
setsupstream
+downstream
ororigin
remotes.git river forge tidy
deletes branches merged into the mainline branch.git river forge archived
lists archived repositories that exist locally.
-
git river
also provides some "loose" subcommands that work on the repository in the current directory, mostly matching the features from theforge
subcommand.git river fetch
fetches all git remotes.git river merge
creates the merge result of allfeature/*
branches.git river tidy
deletes branches merged into the mainline branch.git river restart
rebases the current branch from the upstream remotes mainline branch.
Configuration
Configuration is a JSON object read from ~/.config/git-river/config.json
. Run
git-river config init
to create an example configuration file.
path
- path to a directory to use as the "workspace".forges
- a map of forges.
Forges have the following options. Only type
is required - the default
configuration is to use the main public GitHub or GitLab domain without
authentication.
type
(required) - The type of the instance, eithergithub
orgitlab
.base_url
(optional) - Base url of the instance. Should not include a trailing slash.- Default for GitHub instances is
https://api.github.com
. - Default for GitLab instances is
https://gitlab.com
.
- Default for GitHub instances is
login_or_token
(optional, GitHub only) - Authentication token.private_token
(optional, GitLab only) - Authentication token.gitconfig
(default:{}
) - A key-value map of git config options to set on repositories.groups
(default:[]
) - Include repositories from specific groups.users
(default:[]
) - Include repositories from specific users.self
(default:true
) - Automatically include the authenticated user's repositories.
Example
{
"workspace": "~/Development",
"forges": {
"gitlab": {
"type": "gitlab",
"base_url": "https://gitlab.com",
"private_token": "...",
"groups": [],
"users": [],
"self": true,
"gitconfig": {
"user.email": "user+gitlab@example.invalid"
}
},
"github": {
"type": "github",
"login_or_token": "...",
"groups": [],
"users": [],
"gitconfig": {
"user.email": "user+github@example.invalid"
}
}
}
}
Development
Poetry is used to develop, build, and package git-river. Poetry's
documentation describes how to install it on your OS. Once you've
installed it, create a virtual environment containing git-river and it's
dependencies with poetry install
.
You can then run the local version of the CLI with poetry run git-river
.
Code is formatted using black, run with poetry run black git_river
.
Types are checked using mypy, run with poetry run mypy git_river
.
Tests are written using pytest, run with poetry run pytest
.
# Download the project and install dependencies
git clone https://github.com/datto/git-river.git
cd git-river
poetry install
# Use the local version of the CLI
poetry run git-river ...
# Test, lint and format code
poetry run black git_river
poetry run mypy git_river
poetry run pytest
License
Licensed under the Mozilla Public License Version 2.0.
Copyright Datto, Inc.
Authored by Sam Clements.
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
Built Distribution
File details
Details for the file git-river-1.4.0.tar.gz
.
File metadata
- Download URL: git-river-1.4.0.tar.gz
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.10.5 Linux/5.15.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0aba04a6a37ddb25ead2cab116b52ec753b0841a62657480ce09c516c18c6b0 |
|
MD5 | 5ab28f1199e3a317b5bb5dbec4af593a |
|
BLAKE2b-256 | e0507d5d82931e2c34b8da34d1a3aa5230bdfbc5fd3ca9a5524e5ba9e23d544f |
File details
Details for the file git_river-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: git_river-1.4.0-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.10.5 Linux/5.15.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4167196e0e282168c7a730c900e081f4ef8eff34b4aa82f539248c1fc8cae745 |
|
MD5 | 8c07f1b3edc54e276c789d078695a04f |
|
BLAKE2b-256 | ddd5d4262f9293d1c89832a790140496fa16ac7a91db165abfdadd757ca8d34f |