Use single quotes instead of double quotes.
git commit -m 'add `foo`'
Variables, backticks, and $(...)
are expanded in double quotes, but not single quotes.
See Difference between single and double quotes in Bash
Use single quotes instead of double quotes.
git commit -m 'add `foo`'
Variables, backticks, and $(...)
are expanded in double quotes, but not single quotes.
See Difference between single and double quotes in Bash