prsdthkr / backport

A CLI tool for automating the tedious process of backporting changes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

backport

Build Status NPM version dependencies Status Coverage Status

A simple CLI tool that automates the process of backporting commits

Demonstration gif

What is backporting?

Backporting is the action of taking parts from a newer version of a software system [..] and porting them to an older version of the same software. It forms part of the maintenance step in a software development process, and it is commonly used for fixing security issues in older versions of the software and also for providing new features to older versions.

Source: https://en.wikipedia.org/wiki/Backporting

Who is this tool for?

This tools is for anybody who is working on a codebase where they have to maintain multiple versions. If you manually cherry-pick commits from master and apply them to one or more branches, this tool might save you a lot of time.

backport is a CLI that will ask you which commit(s) to backport and to which branch(es) and then cherry-pick accordingly, and create pull requests. It will always perform the git operation in a temporary folder (~/.backport/repositories/) separate from your working directory, thus never interfering with any unstages changes your might have.

Requirements

  • Node 8 or higher
  • git

OR

  • Docker

Install with Node (recommended)

npm install -g backport

After installation you should update the global config in ~/.backport/config.json with your Github username and a Github access token.

Run via Docker

If you don't have Node.js or git installed locally, you can run backport via Docker.

Click to expand The easiest way is to add the following snippet to your bash profile:
backport() {
    BACKPORT_CONFIG_DIR=~/.backport
    GIT_CONFIG_FILE=~/.gitconfig

    docker run -it --rm -v $(pwd):/app:ro -v $BACKPORT_CONFIG_DIR:/root/.backport -v $GIT_CONFIG_FILE:/etc/gitconfig sqren/backport "$@"
}

Where:

  • BACKPORT_CONFIG_DIR: This can be ANY empty folder on your local machine. Upon running the docker container for the first time, a config.json will be created automatically. This must be filled out with username and accessToken or these must be passed as CLI arguments: backport --username <username> --accessToken <accessToken>
  • GIT_CONFIG_FILE: Must point to a local .gitconfig file that contains the user's name and email.

You can now use backport as if it was installed on the host machine.

Usage

Run the CLI in your project folder (must contain a .backportrc.json file):

> backport

or run this from anywhere:

> backport --upstream elastic/kibana

The above commands will start an interactive prompt. You can use the arrow keys to choose options, <space> to select checkboxes and <enter> to proceed.

CLI arguments

Option Description Default Type
--accessToken Github access token string
--all Show commits from other than me false boolean
--apiHostname Hostname for the Github API api.github.com string
--author Filter commits by author Current user string
--branch Branch to backport to string
--commitsCount Number of commits to choose from 10 number
--gitHostname Hostname for Git remotes github.com string
--labels Pull request labels string
--multiple Select multiple branches and/or commits false boolean
--prDescription Pull request description suffix string
--prTitle Pull request title pattern [{baseBranch}] {commitMessages} string
--sha Sha of commit to backport string
--upstream Name of organization and repository string
--username Github username string
--help Show help
-v, --version Show version number

All of the CLI arguments can also be configured via the configuration options in the config files.

Contributing

See CONTRIBUTING.md

About

A CLI tool for automating the tedious process of backporting changes

License:Apache License 2.0


Languages

Language:TypeScript 97.0%Language:JavaScript 1.7%Language:Shell 1.1%Language:Dockerfile 0.2%