Git Commit角色

时间:2014-11-19 21:52:06

标签: git

使用此git命令时出现问题:

git commit -m 'redirect from "/admin" to "/admin/"; wasn't able to use "[/]?$"'

当我按下回车键时,它会一直进入下一行。该命令有什么问题,这有用吗?:

git commit --cleanup=verbatim -m 'redirect from "/admin" to "/admin/"; wasn't able to use "[/]\?$"'

3 个答案:

答案 0 :(得分:1)

wasn't中包含',因此您的命令行中有一个未终止的字符串常量。由于shell引用规则,您可以轻松完成wasn'\''t。我建议在编辑器中编写提交消息,但是:)

答案 1 :(得分:0)

试试这个:

git commit -m "redirect from \"admin\" to \"admin\""

答案 2 :(得分:0)

尝试使用双引号作为外部标记:

  

git commit --cleanup = verbatim -m“从'/ admin'重定向到'/ admin /';无法使用'[/] \?$'”

wasn't中的内部单引号不应该是这样的问题。