在Bitbucket评论的另一种方式

时间:2017-06-20 14:27:58

标签: eclipse ide bitbucket-server

我有一个关于Bitbucket评论的问题。如果我点击“diff”,我有可能比较两个分支,我可以用单独的注释评论每行代码 是否有可能与命令行工具或API具有相同的功能,或者这只能通过Web界面实现? 我问,因为我正在寻找一种方法来在像eclipse f.e.这样的IDE中使用此功能。通过插件。

1 个答案:

答案 0 :(得分:1)

假设它是拉请求差异。查看File line comment说明栏的documentation,表明您可以使用以下请求正文

 {
     "text": "A pithy comment on a particular line within a file.",
     "anchor": {
         "diffType": "COMMIT",
         "line": 1,
         "lineType": "CONTEXT",
         "fileType": "FROM",
         "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
         "path": "path/to/file",
         "srcPath": "path/to/file",
         "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
     }
 }