Hello everyone, I hope you are very well! ๐ค ๐
Git rebase is a command very similar to merge, and what helps us is to unify branches, when we have a series of commits that we want to associate together, to keep a commits history a bit cleaner, we can use git rebase.
$ git rebase branch
Use only git rebase locally, because we can damage our project.
The added value for the users of rebase is to have a single line of time in master. This is what we do not like so we use merge then here is a matter of taste
Well that's all for this post.
Regards! ๐ค ๐