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.
- Host: GitHub
- URL: https://github.com/bbc2/git-rebase-chain
- Owner: bbc2
- Created: 2019-04-12T13:17:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-12T14:14:52.000Z (almost 7 years ago)
- Last Synced: 2025-03-21T03:43:03.226Z (11 months ago)
- Topics: branch, git, merge-request, rebase
- Language: Shell
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```