I want to find changes on my commits and the word I'm looking for has an accent: Línea
.
git log -p -SLínea
returns no result.
How i can escape special characters no git pickaxe option in a ANSI encoded file?
Notes:
* I'm using Git Bash for windows (Portable Git version 1.9.5)
* File is encoded in ANSI. I have tested with a file UTF-8 encoded and works.
Edit
@LeGEC solution with regular expressions works:
git log -S"Li.nea" --pickaxe-regex
Now I wonder if i can escape special characters or have to use regex and .
every special character.