GIT 中的智能提交不起作用
Smart commit in GIT not working
我已经为托管在 Bit Bucket 服务器上的 GIT 存储库设置了 Crucible。
我正在做出如下所示的智能提交,以在 Crucible
上创建评论
git commit -m "Modified struts core version in pom.xml" +review TP
TP 是项目代码。我收到以下错误:
error: pathspec '+review' did not match any file(s) known to git
error: pathspec 'TP' did not match any file(s) know to git
你能帮我了解导致这个错误的原因并解决这个问题吗?
基于documentation,评论应该部分评论。
git commit -m "Modified struts core version in pom.xml +review TP"
您目前的做法是要求 git
二进制文件解释 +review
命令行选项,它不知道该怎么做。
我已经为托管在 Bit Bucket 服务器上的 GIT 存储库设置了 Crucible。 我正在做出如下所示的智能提交,以在 Crucible
上创建评论git commit -m "Modified struts core version in pom.xml" +review TP
TP 是项目代码。我收到以下错误:
error: pathspec '+review' did not match any file(s) known to git
error: pathspec 'TP' did not match any file(s) know to git
你能帮我了解导致这个错误的原因并解决这个问题吗?
基于documentation,评论应该部分评论。
git commit -m "Modified struts core version in pom.xml +review TP"
您目前的做法是要求 git
二进制文件解释 +review
命令行选项,它不知道该怎么做。