有個開源專案odoo,目前已經有10多個分支(版本),整個函式庫clone下來非常大。 我知道並且試著可以clone -b 一個分支下來,但我發現這個分支也非常大;我們知道在網頁上download時選好分支,一般就是該分支最新的版本,沒有歷史版本。 請問誰知道使用git clone 哪些選項可以做到? 謝謝!
ringa_lee
git init一個本地倉設定upstream的remote位址git fetch origin/branch1 --depth=1大概就是這樣的
git init一個本地倉
設定upstream的remote位址
git fetch origin/branch1 --depth=1
大概就是這樣的