Find specific text within a commit's changes (git, grep)
git show b523b86 | grep -i 'JS'
Displays the full diff of a specific commit but filters the output to show only the lines containing a certain string.
git show b523b86 | grep -i 'JS'
Displays the full diff of a specific commit but filters the output to show only the lines containing a certain string.