Metadata-Version: 2.0
Name: git-revise
Version: 0.3.1
Summary: Efficiently update, split, and rearrange git commits
Home-page: https://github.com/mystor/git-revise
Author: Nika Layzell
Author-email: nika@thelayzells.com
License: MIT
Project-URL: Bug Tracker, https://github.com/mystor/git-revise/issues/
Project-URL: Source Code, https://github.com/mystor/git-revise/
Project-URL: Documentation, https://git-revise.readthedocs.io/en/latest/
Keywords: git revise rebase amend fixup
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6

# git revise
[![Build Status](https://travis-ci.org/mystor/git-revise.svg?branch=master)](https://travis-ci.org/mystor/git-revise)
[![PyPi](https://img.shields.io/pypi/v/git-revise.svg)](https://pypi.org/project/git-revise)
[![Documentation Status](https://readthedocs.org/projects/git-revise/badge/?version=latest)](https://git-revise.readthedocs.io/en/latest/?badge=latest)


`git revise` is a `git` subcommand to efficiently update, split, and rearrange
commits. It is heavily inspired by `git rebase`, however tries to be more
efficient and ergonomic for patch-stack oriented workflows.

By default, `git revise` will apply staged changes to a target commit,
updating `HEAD` to point at the revised history. It also supports splitting
commits, and rewording commit messages.

Unlike `git-rebase`, `git revise` avoids modifying working directory and
index state, performing all merges in-memory, and only writing them when
necessary. This allows it to be significantly faster on large codebases, and
avoid invalidating builds.

## Install

```sh
$ pip install --user git-revise
```

## Documentation

Documentation, including usage and examples, is hosted on [Read the Docs].

[Read the Docs]: https://git-revise.readthedocs.io/en/latest



