Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. 如何使用 Git
  6. 如何在 Git 中使用拉取请求
  7. 审查与合并拉取请求
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

审查与合并拉取请求

您可以直接在 Backlog 中检查和审查代码差异。

首先,转到“Files”选项卡。

Go to the “Files” tab

如果您发现需要修改的内容,您可以直接在源代码上进行评论。

只需将鼠标悬停在目标行上,然后单击出现的加号按钮。

Hover over the target row and click the plus button that appears

输入任何更改以及您要通知的用户。然后点击“Submit”。

click “Submit”

您的评论会嵌入到源代码中,并发布到“Comment”选项卡。

Also posted to the “Comment” tab

在审查了我们之前添加的拉取请求的评论后,并相应地修改源代码。

var sortNumber = function (number) {
    number.sort(function (a, b) {
        if (a === b) {
            return 0;
        }
        return a < b ? -1 : 1;
    });
  };

  var number = [19, 3, 81, 1, 24, 21];
  sortNumber(number);
  console.log(number);

现在修正完成,再次提交并推送。

$ git add sort.js
$ git commit -m "<commit_message>"
$ git push origin add-sort-func
“Fix to use the strict equality operator (===)”

在我们之前创建的拉取请求上发表评论,表明该拉取请求已被修复。

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life