DEV Community

Calvin
Calvin

Posted on • Updated on

Reading Snippets [35 => Git]

Git rebasing makes a linear sequence of commits. The commit log/history of a repository can be a lot cleaner if rebasing is used.

For example, git rebase could be used to move work from one branch directly to work from another master, making the features on both branches look like they were developed sequentially even though they were actually developed in parallel.

Source:Learn Git Branching

Top comments (0)