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