Sometimes I feel the urge to put some more expressiveness in my Git commit messages. Unfortunately, Bash does not seem to like this:
cd ~/git/wargames git commit -m "Frustrating <insert object of frustration here>!" Output:
-bash: !": event not found Escaping with a backslash helps, but this includes the backslash in the commit message.
How do I escape the exclamation mark in Bash correctly?