1

I have setup Crucible for my GIT repository hosted on Bit Bucket server. I am making a smart commit as shown below to create a review on Crucible

git commit -m "Modified struts core version in pom.xml" +review TP

TP is the project code. I am getting the below error :

error: pathspec '+review' did not match any file(s) known to git
error: pathspec 'TP' did not match any file(s) know to git

Can you help me understand what is causing this error & fix this.

4

1 回答 1

1

根据文档,审查应该是评论的一部分

git commit -m "Modified struts core version in pom.xml +review TP"

您当前的操作方式是要求git二进制文件解释+review命令行选项,而它不知道该怎么做。

于 2018-01-24T06:46:17.243 回答