An open API service indexing awesome lists of open source software.

https://github.com/bbc2/git-rebase-chain

Rebase several Git branches on top of each other.
https://github.com/bbc2/git-rebase-chain

branch git merge-request rebase

Last synced: 7 months ago
JSON representation

Rebase several Git branches on top of each other.

Awesome Lists containing this project

README

          

# Git-rebase-chain

Rebase several Git branches on top of each other.

## Example

```
> git-rebase-chain master feature-1 depends-on-feature-1
master → feature-1
First, rewinding head to replay your work on top of it...
Applying: Rename variable
Applying: Add feature 1
feature-1 → depends-on-feature-1
First, rewinding head to replay your work on top of it...
Applying: Add feature that depends on feature 1
```