已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
Git 分散式特性的主要優點是什麼?
Git 會自動將多個遠端作者儲存的變更合併成單一專案存放庫。
多個遠端參與者可以在專案上共同作業,而不需要擔心彼此的工作。 參與者可以先檢查另一個參與者的變更,再與自己的參與者合併。
Git 會跨廣域網路將檔案和資料夾結構散發給每個參與者的電腦,以安全地保留內容。 此架構提供高度安全的資料存放區,並確保專案存放庫的資料不會損毀。
當 Git 使用者複製存放庫時,哪個詞彙正確描述 Git 為原始存放庫設定的參考?
origin
repo
遠端
什麼 Git 命令會複製現有的存放庫?
git clone <repo-name>
git clone <repo-path>
git copy <repo-name>
您可以使用哪個 Git 命令來儲存目前的變更,但不使用提取要求?
git stash
git save
git store
假設您的專案在存放庫的本機工作分支中有 10 個檔案。 您最近更新了3 個檔案:toc. yml、intro.txt 和 exercise.js。 現在,您想要針對 JSON 檔案的變更建立提取要求。 您應該使用哪一組 Git 命令來針對這些變更建立提取要求?
git add . git commit -m "my changes for the exercise" git push origin <working-branch>
git add .
git commit -m "my changes for the exercise"
git push origin <working-branch>
git add exercise.json git commit -m "my changes for the exercise" git push origin <working-branch>
git add exercise.json
git add exercise git commit -m "my changes for the exercise" git push remote <working-branch>
git add exercise
git push remote <working-branch>
您必須先回答所有問題,才能檢查進度。
此頁面對您有幫助嗎?