DEV Community

Cover image for Tutorial how does Git Rebase work and compare with Git Merge and Git Interactive Rebase

Tutorial how does Git Rebase work and compare with Git Merge and Git Interactive Rebase

Duomly on May 11, 2020

This article was originally published at: https://www.blog.duomly.com/git-rebase-tutorial-and-comparison-with-git-merge/ Intro There...
Collapse
 
maxgreive profile image
Max Greive

I discovered git pull --rebase --autostash lately and I love it!

git config --global pull.rebase true
git config --global rebase.autoStash true
Enter fullscreen mode Exit fullscreen mode

Source: cscheng.info/2017/01/26/git-tip-au...

Collapse
 
s0xzwasd profile image
John Doe

Good guide!