GIT: Show changed files in last commit
git log --name-only --pretty=oneline --full-index HEAD^^..HEAD | grep -vE '^[0-9a-f]{40} ' | sort | uniq
GIT: Show file history
git log -p filename
BASH: Find word in files
grep -R "word_to_search" *
GIT: Show changed files in last commit
git log --name-only --pretty=oneline --full-index HEAD^^..HEAD | grep -vE '^[0-9a-f]{40} ' | sort | uniq
GIT: Show file history
git log -p filename
BASH: Find word in files
grep -R "word_to_search" *