git 저장소를 일부 디렉토리 만 복제하는 방법은 무엇입니까? 작동하지 않습니다. sam@sam:~/code/pcl_standalone$

예를 들어 PCL 3d_rec_framework를 다운로드하고 싶습니다.

이것은 PCL의 git 저장소입니다 : 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$

다운로드하는 방법?

그건 그렇고, PCL의 git을 다운로드하고 원하지 않는 다른 모든 디렉토리를 제거하고 싶지 않습니다. 그래서 제가이 질문을합니다.

감사합니다 ~



답변

당신은 할 수 없습니다. git을 사용하면 전체 리포지토리와 리포지토리의 전체 기록을 복제합니다.

동일한 질문 에 대한 스택 교환 답변에 나열된 git 아카이브에서 단일 파일을 가져올 수있는 몇 가지 해결 방법이 있지만 원하는 단일 파일 또는 디렉토리를 얻으려면 전체 저장소를 다운로드해야합니다.


답변

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에게 체크 아웃하려는 디렉토리를 알려줍니다. 그런 다음 해당 디렉토리 만 가져올 수 있습니다

git pull origin master

답변

먼저 다음을 수행하십시오.

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은 원하는 하위 디렉토리 만 포함되도록 저장소를 다시 작성합니다. 하위 디렉토리의 깊이가 여러 층인 경우에도 작동합니다. 대상 디렉토리의 이름을 하위 디렉토리의 이름으로 지정하십시오. 그런 다음 “git filter-branch”명령에서 하위 경로의 상대 경로를 입력하십시오. 아, 머리 꼭대기 만 다운로드 하도록 --depth 1지시 git합니다 ( 기본적으로 기록 제거 ).


답변

git clone --filter 힘내 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부터 서버 지원은 없지만 이미 로컬에서 테스트 할 수 있습니다.

TODO : --filter=blob:none모든 얼룩을 건너 뛰지 만 여전히 모든 트리 개체를 가져옵니다. 그러나 정상적인 저장소에서는 파일 자체와 비교할 때 크기가 작아야하므로 이미 충분합니다. 질문 : 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

의 형식은 --filter에 설명되어 man git-rev-list있습니다.

이 기능을 지원하기 위해 Git 원격 프로토콜이 확장되었습니다.

힘내 나무에 대한 문서 :

참조 : https : //.com/questions/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의 상류 .

힘내 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

결론 : 제외한 모든 얼룩이 d1/a없습니다. 예를 들어 f70a17f51b7b30fec48a32e4f19ac15e261fd1a4, d1/b체크 아웃 후에는 없습니다 d1/.

참고 root/rootmybranch/mybranch도 누락,하지만 --depth 1가죽이 누락 된 파일 목록에서. 를 제거하면 --depth 1누락 된 파일 목록에 표시됩니다.


답변

GitHub 리포지토리의 경우 https://github.com/HR/github-clone을 사용하여 GitHub 리포지토리의 모든 하위 디렉토리 (모든 참조에서)를 복제 할 수 있습니다.