Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 318 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 318 Bytes

git-rebase-demo

Example repo to demonstrate git rebase usage

Contains a main and feature branch with the best code ever.

Usage

Rebase feature onto main:

> git rebase main feature
// OR
> git checkout feature; git rebase main

Interactive rebase:

> git checkout feature
> git rebase -i main