DEV Community

Discussion on: The biggest advice I could give to another developer

Collapse
 
lingster profile image
Ling Li

Nice, I would also add to use your local git repo often, checkin often and when you notice a bug you have the option of using git bisect to help you to narrow down where it came from. Assuming it was something that was recently introduced.

Collapse
 
dvddpl profile image
Davide de Paolis

yes, definetely. having a detailed history of atomic commits helps a lot in the long run to find out what piece of code introduced the bug!.
thanx for your comment!