1. 程式人生 > >Git 中 pull 和 clone 的區別

Git 中 pull 和 clone 的區別

etc 沒有 git code pos merge git merge 分支 commit

git pull
git clone

clone 是本地沒有 repository 時,將遠程 repository 整個下載過來。

pull 是本地有 repository 時,將遠程 repository 裏新的 commit 數據(如有的話)下載過來,並且與本地代碼merge。

note:git pull相當於git fetch和git merge。

其意思是先從遠程下載git項目裏的文件,然後將文件與本地的分支進行merge。

Git 中 pull 和 clone 的區別