DEV Community

Cover image for Common Git problems and easy incremental solutions for all the family

Common Git problems and easy incremental solutions for all the family

Javier Aguirre on May 22, 2019

Git is a gentle beast, but beasts are wild, and they require taming, here are some tips to resolve 99% of git problems. Working with developers ...
Collapse
 
jessekphillips profile image
Jesse Phillips

You're already teaching interactive rebase so just keep using it. Instead of your last solution with cherry picking, rebase and drop commits you don't want. The interactive script is very powerful and can even be modified during rebase with --edit-todo

Collapse
 
javaguirre profile image
Javier Aguirre Wealize

Thanks Jesse! I’ll research that and improve the last solution! :-)