DEV Community

Discussion on: Tutorial how does Git Rebase work and compare with Git Merge and Git Interactive Rebase

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
 
duomly profile image
Duomly • Edited

Good one! I did not know that :)