วิธีโคลนที่เก็บ git เพียงบางไดเรกทอรี?


26

ตัวอย่างเช่นฉันต้องการดาวน์โหลด PCL 3d_rec_framework

นี่คือที่เก็บ git ของ PCL: https://github.com/PointCloudLibrary/pcl.git

จะดาวน์โหลดไดเรกทอรีนี้ได้อย่างไร?

https://github.com/PointCloudLibrary/pcl/tree/master/apps

ฉันพยายามเรียกใช้ แต่ไม่ทำงาน:

sam@sam:~/code/pcl_standalone$ git clone https://github.com/PointCloudLibrary/pcl/tree/master/apps/3d_rec_framework
Cloning into '3d_rec_framework'...
error: The requested URL returned error: 403 while accessing https://github.com/PointCloudLibrary/pcl/tree/master/apps/3d_rec_framework/info/refs
fatal: HTTP request failed
sam@sam:~/code/pcl_standalone$ 

จะดาวน์โหลดได้อย่างไร?

อย่างไรก็ตามฉันไม่ต้องการดาวน์โหลด git ของ PCL และลบไดเรกทอรีอื่นทั้งหมดที่ฉันไม่ต้องการ นั่นเป็นเหตุผลที่ฉันถามคำถามนี้

ขอบคุณ ~

คำตอบ:


7

คุณไม่สามารถ. ด้วย git คุณโคลนที่เก็บทั้งหมดและประวัติเต็มของที่เก็บ

มีวิธีแก้ไขปัญหาบางอย่างเพื่อให้สามารถดึงไฟล์เดียวออกจากไฟล์เก็บถาวร git ซึ่งแสดงอยู่ในคำตอบของ Stack Exchange สำหรับคำถามเดียวกันแต่คุณยังจะต้องดาวน์โหลดที่เก็บทั้งหมดเพื่อรับไฟล์หรือไดเรกทอรีเดียวที่คุณต้องการ


4
ไม่จริง: askubuntu.com/a/729798/384425
CelticParser

3
@CelticParser ดังนั้นคุณอ้างว่าคำตอบของฉันไม่เป็นความจริงจากนั้นดำเนินการต่อเพื่อหาคำตอบที่ต้องดาวน์โหลดทุกไฟล์จากที่เก็บ git เพื่อรับไฟล์เดียว?
dobey


> "ฉันไม่ต้องการดาวน์โหลด git ของ PCL และลบไดเรกทอรีอื่นทั้งหมดที่ฉันไม่ต้องการ" นั่นคือปลายเปิด ฉันอ่านเพราะ @sam ไม่ต้องการลบไดเรกทอรีด้วยตนเอง
CelticParser

39

คำตอบของ dobey ไม่มีในกรณีนี้ตั้งแต่ git v1.7 ตอนนี้คุณสามารถเช็กเอาต์บางโฟลเดอร์จากที่เก็บ คำแนะนำทั้งหมดจะพบว่าที่นี่

git init <repo>
cd <repo>
git remote add -f origin <url>

git config core.sparseCheckout true

echo "some/dir/" >> .git/info/sparse-checkout
echo "another/sub/tree" >> .git/info/sparse-checkout

สิ่งนี้จะบอกคอมไพล์ว่าคุณต้องการชำระเงินที่ใด จากนั้นคุณสามารถดึงไดเรกทอรีเหล่านั้นได้

git pull origin master

3
สิ่งนี้บอกเป็นนัยว่าอูบุนตูทุกรุ่นมี 1.7 ที่พร้อมใช้งาน คุณควรตรวจสอบว่าเป็นกรณีและแสดงความคิดเห็นในคำตอบของคุณที่นี่ว่ารุ่นใดจะใช้งานได้จริง PowerShell ไม่ใช่ Ubuntu ดังนั้นจึงไม่ควรรวมไว้ในความคิดของฉัน
Thomas Ward

2
@ThomasW Ubuntu ทุกรุ่นที่รองรับในปัจจุบันมีอย่างน้อย git 1.7 และส่วนใหญ่เป็น 2.x ในขณะนี้
dobey

4
ยังคงนี้จะโคลนพื้นที่เก็บข้อมูลทั้งหมดแล้วทำเช็คเอาต์เบาบาง
Clerenz

@dobey อย่างจริงจังคุณลบข้อมูลที่เป็นประโยชน์ที่คนค้นหาคำถามนี้ด้วย Google อาจจะมองหามาก! ถ้าฉันถูกบังคับให้ใช้ powershell ฉันต้องการดูรายละเอียดของท่อแน่นอนว่าพวกเขาไม่ชัดเจน! echo "some / dir /" | Out-File - การเข้ารหัส ascii .git / info / sparse-checkout echo "Another / sub / tree /" | ออกไฟล์ - ใช้ - เข้ารหัส ascii .git / info / sparse-checkout
ซามูเอลÅslund

8

ก่อนอื่นให้ทำ:

git clone --depth 1 [repo root] [name of destination directory]

แล้ว:

cd [name of destination directory]

... และสุดท้าย:

git filter-branch --prune-empty --subdirectory-filter [path to sub-dir] HEAD

มันง่ายมาก Git จะเขียน repo ใหม่เพื่อให้มีเฉพาะ sub-dir ที่ต้องการ วิธีนี้ใช้ได้แม้ว่า sub-dir จะลึกหลายชั้น เพียงตั้งชื่อไดเรกทอรีปลายทางให้เป็นชื่อของ sub-dir จากนั้นในคำสั่ง "git filter-branch" ให้ใส่พา ธ ที่สัมพันธ์กับ sub-dir โอ้--depth 1บอกgitให้ดาวน์โหลดเฉพาะด้านบนของหัว ( เป็นหลักลบประวัติ )


สิ่งนี้ช่วยให้คุณสามารถดาวน์โหลดไดเรกทอรีย่อยเดียว แต่คำถามเกี่ยวข้องกับหลายไดเรกทอรี .. เป็นไปได้ด้วยวิธีนี้หรือไม่ ฉันต้องบอกว่าฉันไม่เห็นวิธีการทำงานนี้ดูที่เอกสารประกอบ
Joeppie

มีวิธีง่ายๆในการรีเฟรชไดเรกทอรีนั้นเป็นครั้งคราวหรือไม่?
Clerenz

4

git clone --filter จาก Git 2.19

ตัวเลือกนี้จะข้ามการดึงข้อมูลวัตถุที่ไม่ต้องการจากเซิร์ฟเวอร์:

git clone --depth 1 --no-checkout --filter=blob:none \
  "file://$(pwd)/server_repo" local_repo
cd local_repo
git checkout master -- mydir/myfile

เซิร์ฟเวอร์ควรกำหนดค่าด้วย:

git config --local uploadpack.allowfilter 1
git config --local uploadpack.allowanysha1inwant 1

ไม่มีการสนับสนุนเซิร์ฟเวอร์ตั้งแต่ v2.19.0 แต่สามารถทดสอบในเครื่องได้แล้ว

สิ่งที่ต้องทำ: --filter=blob:noneข้าม blobs ทั้งหมด แต่ยังคงดึงวัตถุต้นไม้ทั้งหมด แต่สำหรับ repo ปกติมันควรจะเล็กเมื่อเทียบกับไฟล์ของตัวเองดังนั้นมันก็ดีพออยู่แล้ว ถามได้ที่: https://www.spinics.net/lists/git/msg342006.html Devs ตอบ a --filter=tree:0อยู่ในผลงานที่ต้องทำ

โปรดจำไว้ว่า--depth 1มีนัยแล้ว--single-branchโปรดดู: /programming/1778088/how-to-clone-a-single-branch-in-git

file://$(path)ต้องเอาชนะgit cloneโปรโตคอล shenanigans: /programming/47307578/how-to-shallow-clone-a-local-git-repository-with-a-relative-path

รูปแบบของการจัดทำเอกสารเกี่ยวกับ--filterman git-rev-list

มีการขยายส่วนขยายไปยังโปรโตคอลระยะไกล Git เพื่อสนับสนุนคุณสมบัตินี้

เอกสารบนต้นไม้ Git:

ดูเพิ่มเติมที่: /programming/2466735/how-to-checkout-only-one-file-from-git-repository-sparse-checkout

ทดสอบมันออกมา

#!/usr/bin/env bash
set -eu

list-objects() (
  git rev-list --all --objects
  echo "master commit SHA: $(git log -1 --format="%H")"
  echo "mybranch commit SHA: $(git log -1 --format="%H")"
  git ls-tree master
  git ls-tree mybranch | grep mybranch
  git ls-tree master~ | grep root
)

# Reproducibility.
export GIT_COMMITTER_NAME='a'
export GIT_COMMITTER_EMAIL='a'
export GIT_AUTHOR_NAME='a'
export GIT_AUTHOR_EMAIL='a'
export GIT_COMMITTER_DATE='2000-01-01T00:00:00+0000'
export GIT_AUTHOR_DATE='2000-01-01T00:00:00+0000'

rm -rf server_repo local_repo
mkdir server_repo
cd server_repo

# Create repo.
git init --quiet
git config --local uploadpack.allowfilter 1
git config --local uploadpack.allowanysha1inwant 1

# First commit.
# Directories present in all branches.
mkdir d1 d2
printf 'd1/a' > ./d1/a
printf 'd1/b' > ./d1/b
printf 'd2/a' > ./d2/a
printf 'd2/b' > ./d2/b
# Present only in root.
mkdir 'root'
printf 'root' > ./root/root
git add .
git commit -m 'root' --quiet

# Second commit only on master.
git rm --quiet -r ./root
mkdir 'master'
printf 'master' > ./master/master
git add .
git commit -m 'master commit' --quiet

# Second commit only on mybranch.
git checkout -b mybranch --quiet master~
git rm --quiet -r ./root
mkdir 'mybranch'
printf 'mybranch' > ./mybranch/mybranch
git add .
git commit -m 'mybranch commit' --quiet

echo "# List and identify all objects"
list-objects
echo

# Restore master.
git checkout --quiet master
cd ..

# Clone. Don't checkout for now, only .git/ dir.
git clone --depth 1 --quiet --no-checkout --filter=blob:none "file://$(pwd)/server_repo" local_repo
cd local_repo

# List missing objects from master.
echo "# Missing objects after --no-checkout"
git rev-list --all --quiet --objects --missing=print
echo

echo "# Git checkout fails without internet"
mv ../server_repo ../server_repo.off
! git checkout master
echo

echo "# Git checkout fetches the missing file from internet"
mv ../server_repo.off ../server_repo
git checkout master -- d1/a
echo

echo "# Missing objects after checking out d1/a"
git rev-list --all --quiet --objects --missing=print

GitHub ต้นน้ำ

ผลผลิตใน Git v2.19.0:

# List and identify all objects
c6fcdfaf2b1462f809aecdad83a186eeec00f9c1
fc5e97944480982cfc180a6d6634699921ee63ec
7251a83be9a03161acde7b71a8fda9be19f47128
62d67bce3c672fe2b9065f372726a11e57bade7e
b64bf435a3e54c5208a1b70b7bcb0fc627463a75 d1
308150e8fddde043f3dbbb8573abb6af1df96e63 d1/a
f70a17f51b7b30fec48a32e4f19ac15e261fd1a4 d1/b
84de03c312dc741d0f2a66df7b2f168d823e122a d2
0975df9b39e23c15f63db194df7f45c76528bccb d2/a
41484c13520fcbb6e7243a26fdb1fc9405c08520 d2/b
7d5230379e4652f1b1da7ed1e78e0b8253e03ba3 master
8b25206ff90e9432f6f1a8600f87a7bd695a24af master/master
ef29f15c9a7c5417944cc09711b6a9ee51b01d89
19f7a4ca4a038aff89d803f017f76d2b66063043 mybranch
1b671b190e293aa091239b8b5e8c149411d00523 mybranch/mybranch
c3760bb1a0ece87cdbaf9a563c77a45e30a4e30e
a0234da53ec608b54813b4271fbf00ba5318b99f root
93ca1422a8da0a9effc465eccbcb17e23015542d root/root
master commit SHA: fc5e97944480982cfc180a6d6634699921ee63ec
mybranch commit SHA: fc5e97944480982cfc180a6d6634699921ee63ec
040000 tree b64bf435a3e54c5208a1b70b7bcb0fc627463a75    d1
040000 tree 84de03c312dc741d0f2a66df7b2f168d823e122a    d2
040000 tree 7d5230379e4652f1b1da7ed1e78e0b8253e03ba3    master
040000 tree 19f7a4ca4a038aff89d803f017f76d2b66063043    mybranch
040000 tree a0234da53ec608b54813b4271fbf00ba5318b99f    root

# Missing objects after --no-checkout
?f70a17f51b7b30fec48a32e4f19ac15e261fd1a4
?8b25206ff90e9432f6f1a8600f87a7bd695a24af
?41484c13520fcbb6e7243a26fdb1fc9405c08520
?0975df9b39e23c15f63db194df7f45c76528bccb
?308150e8fddde043f3dbbb8573abb6af1df96e63

# Git checkout fails without internet
fatal: '/home/ciro/bak/git/test-git-web-interface/other-test-repos/partial-clone.tmp/server_repo' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

# Git checkout fetches the missing directory from internet
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 1 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (1/1), 45 bytes | 45.00 KiB/s, done.
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 1 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (1/1), 45 bytes | 45.00 KiB/s, done.

# Missing objects after checking out d1
?f70a17f51b7b30fec48a32e4f19ac15e261fd1a4
?8b25206ff90e9432f6f1a8600f87a7bd695a24af
?41484c13520fcbb6e7243a26fdb1fc9405c08520
?0975df9b39e23c15f63db194df7f45c76528bccb

สรุป: blobs ทั้งหมดยกเว้นd1/aหายไป เช่นf70a17f51b7b30fec48a32e4f19ac15e261fd1a4ซึ่งd1/bไม่ได้อยู่ที่นั่นหลังจากเช็คเอาd1/ต์

โปรดทราบว่าroot/rootและmybranch/mybranchจะหายไป แต่--depth 1ซ่อนไว้จากรายการไฟล์ที่หายไป หากคุณลบไฟล์--depth 1เหล่านั้นจะปรากฏในรายการไฟล์ที่หายไป


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.