I use backtick character in my commits very often. I also usually commit using git commit -m
When I run a command like this
git commit -m "add `foo`"
Bash tries to execute foo.
I can use backslash \ to escape the backtick but I am wishing for a better solution to avoid escaping backtick all the time.