DEV Community

Discussion on: What is your favourite Git command?

Collapse
 
theooliveira profile image
Theo Oliveira • Edited

I know the one I hate. Rebase. I am still learning so I am confused about it's use

Collapse
 
munamohamed94 profile image
Muna Mohamed

You and me both, Theo! A senior dev recommended using Git Fork, which makes using git rebase a lot easier because you can visually see what's going on with the branches and commits. Do check it out!

Collapse
 
waylonwalker profile image
Waylon Walker • Edited

I almost always get interactive rebase backwards. For some reason -i confuses the heck out of me and I avoid it more than I should.

Though I really like to utilize a rebase with master regularly to make sure I dont get behind.

git fetch --all
git rebase master