Git rebase: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 2: Line 2:


* [[Git_Commands#Branch_Operations|Git Commands]]
* [[Git_Commands#Branch_Operations|Git Commands]]
* [[Git_Concepts#Rebasing|Git Concepts - Rebasing]]
* [[Git Rebasing]]


=Overview=
=Overview=


<tt>git rebase</tt> reapplies commits on top of another base tip, removing the original commits. For more details on how rebasing works, and some concrete examples, see: {{Internal|Git Rebasing|Git Rebasing}}
<tt>git rebase</tt> reapplies commits on top of another base tip, removing the original commits. For more details on how rebasing works, and some concrete examples, see: {{Internal|Git Rebasing|Git Rebasing}}

Revision as of 21:01, 30 July 2019

Internal

Overview

git rebase reapplies commits on top of another base tip, removing the original commits. For more details on how rebasing works, and some concrete examples, see:

Git Rebasing