有时我觉得有必要在我的git提交消息中加入更多的表达.不幸的是,bash似乎并不喜欢这样.
iblue@silence ~/git/wargames $git commit -m "Frustrating <insert object of frustration here>!" -bash: !": event not found
使用反斜杠转义有帮助,但这包括提交消息中的反斜杠.
如何正确地删除bash中的感叹号?
当您将其包含在单引号字符串中时,会保留感叹号.
原文链接:https://www.f2er.com/bash/384747.html例:
git commit -m 'Frustrating <insert object of frustration here>!'