Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. 如何使用 Git
  6. 如何在 Command Line 中使用 Git
  7. 從儲存庫拉取
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

從儲存庫拉取

現在讓我們把最新的修改 (我們剛才在前一個步驟推送的修改) 從遠端儲存庫拉取到我們的本地儲存庫 (即tutorial目錄)。

既然我們的遠端儲存庫與tutorial2中的更改保持同步,讓我們拉取更改並同步我們的初始儲存庫目錄tutorial

若要執行拉取,請使用 git pull 指令。如果您不包含儲存庫名稱,將在別名為「origin」的儲存庫上執行拉取。

$ git pull origin main
  Username:
  Password:
  From https://example.backlog.com/git/BLGGIT/tutorial.git
  * branch            main     -> FETCH_HEAD
  Updating ac56e47..3da09c1
  Fast-forward
  sample.txt |    1 +
    1 files changed, 1 insertions(+), 0 deletions(-)

使用 git log 指令驗證歷史紀錄是否已更新。

$ git log
  commit 3da09c1134a41f2bee854a413916e4ebcae7318d
  Author: username
  Date:   Thu Jul 12 18:02:45 2022 +0900

  append description of the add command

  commit ac56e474afbbe1eab9ebce5b3ab48ac4c73ad60e
  Author: username
  Date:   Thu Jul 12 18:00:21 2022 +0900

      first commit

新的提交現在列在這個儲存庫的歷史日誌下。

開啟sample.txt檔案,並檢查內容。

Anyone can learn Git with this tutorial and Backlog
add: Register a change in an index

您將看到add: Register a change in an index已新增到內容中。

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life