How to Install and Uninstall git-revise.noarch Package on CentOS Stream 8

Last updated: September 28,2024

1. Install "git-revise.noarch" package

Please follow the steps below to install git-revise.noarch on CentOS Stream 8

$ sudo dnf update $ sudo dnf install git-revise.noarch

2. Uninstall "git-revise.noarch" package

This guide let you learn how to uninstall git-revise.noarch on CentOS Stream 8:

$ sudo dnf remove git-revise.noarch $ sudo dnf autoremove

3. Information about the git-revise.noarch package on CentOS Stream 8

Last metadata expiration check: 4:26:45 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : git-revise
Version : 0.7.0
Release : 5.el8
Architecture : noarch
Size : 15 k
Source : python-git-revise-0.7.0-5.el8.src.rpm
Repository : epel
Summary : Efficiently update, split, and rearrange git commits
URL : https://github.com/mystor/git-revise
License : MIT
Description :
: 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.