Git - Tracking method/function history
The git log command helps us to view the information about previous commits occurred in the project. But do you know, you can see the history of any method/function in your codebase easily with:
git log -L :function:path/to/file
A quick example on t...
soniasingla.hashnode.dev1 min read