Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mystor/git-revise
A handy tool for doing efficient in-memory commit rebases & fixups
https://github.com/mystor/git-revise
Last synced: about 3 hours ago
JSON representation
A handy tool for doing efficient in-memory commit rebases & fixups
- Host: GitHub
- URL: https://github.com/mystor/git-revise
- Owner: mystor
- License: mit
- Created: 2018-12-18T05:35:50.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T03:14:12.000Z (7 months ago)
- Last Synced: 2024-11-06T16:42:30.541Z (7 days ago)
- Language: Python
- Size: 290 KB
- Stars: 748
- Watchers: 19
- Forks: 31
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: docs/contributing.rst
- License: LICENSE
Awesome Lists containing this project
README
# 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 it tries to be more
efficient and ergonomic for patch-stack oriented workflows.By default, `git revise` will apply staged changes to a target commit, then
update `HEAD` to point at the revised history. It also supports splitting
commits and rewording commit messages.Unlike `git rebase`, `git revise` avoids modifying the working directory or
the index state, performing all merges in-memory and only writing them when
necessary. This allows it to be significantly faster on large codebases and
avoids unnecessarily invalidating builds.## Install
```sh
$ pip install --user git-revise
```Various people have also packaged `git revise` for platform-specific package
managers (Thanks!)#### macOS Homebrew
```sh
$ brew install git-revise
```#### Fedora
```sh
$ dnf install git-revise
```## Documentation
Documentation, including usage and examples, is hosted on [Read the Docs].
[Read the Docs]: https://git-revise.readthedocs.io/en/latest