DEV Community

Discussion on: April 24, 2020: What did you learn this week?

Collapse
 
upieez profile image
Samuel Huang

In your opinion, what is the advantage of git rebase over a standard push/merge/pull

Collapse
 
asperduti profile image
Ariel Sperduti • Edited

You end with a linear history, that for me it is cleaner. Because, from my point of view, is clearer to view the history of the project making easier to track changes, issues, bugs.

When I only used "git merge", I was getting really frustrated about reviewing the project history.
If you don't use it, I suggest you check it.