原文链接:http://www.cnblogs.com/sn-dnv-aps/p/3296886.html
今天在git提交代码写注释的时候发现在注释不能换行?
命令如下:
git commit -m"fix issues:
1.blog update error.
2.logging to file not work."
Google一下, windows环境下的Git Bash中注释的换行: 使用单引号。
git commit -m'fix issues:
1.blog update error.
2.logging to file not work.'
git log 日志显示的内容如下:
$ git log
commit 9fcb2653d83f45dc75df2b1e8d0d00396d39b424
Author: Michael.Tian <[email protected]>
Date: Wed Aug 16 12:28:25 2017 +0800
fixed issues:
1.blog update category error.
2.logging to file not work issue.
效果图如下:
还没有人评论,抢个沙发吧...