Slackbuildのコレクションを見つけましたが、GitHubに必要なものがいくつかあります。 https://github.com/PhantomX/slackbuilds/ すべてのgitを取得したくありません。
git clone https://github.com/PhantomX/slackbuilds.git
ただし、これにはslackbuildのみを入手してください。
これを行う方法?出来ますか?
Slackbuildのコレクションを見つけましたが、GitHubに必要なものがいくつかあります。 https://github.com/PhantomX/slackbuilds/ すべてのgitを取得したくありません。
git clone https://github.com/PhantomX/slackbuilds.git
ただし、これにはslackbuildのみを入手してください。
これを行う方法?出来ますか?
回答:
履歴全体をダウンロードすることになりますので、あまりメリットはありませんが、「スパース」チェックアウトを使用して特定の部分をチェックアウトできます。引用このStack Overflowポストを:
スパースクローンを実行する手順は次のとおりです。
mkdir <repo> cd <repo> git init git remote add -f origin <url>
これにより、リモートで空のリポジトリが作成され、すべてのオブジェクトが取得されますが、チェックアウトはされません。それから:
git config core.sparseCheckout true
次に、実際にチェックアウトするファイル/フォルダーを定義する必要があります。これは
.git/info/sparse-checkout
、それらをリストすることによって行われます、例えば:echo "some/dir/" >> .git/info/sparse-checkout echo "another/sub/tree" >> .git/info/sparse-checkout
最後になりましたが、空のリポジトリをリモートからの状態で更新します:
git pull origin master
あなたは見ていたいかもしれない拡張チュートリアルを、あなたはおそらく、公式読みくださいまばらなチェックアウトのドキュメントを。
浅いクローンも使用した方が良いかもしれません。git pull
前述のコマンドの代わりに、次を試してください。
git pull --depth=1 origin master
error: Sparse checkout leaves no entry on working directory
への変更を行った後にgitのプルを行った後core.sparseCheckout
と.git/info/sparse-checkout
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/
サーバーは次のように構成する必要があります。
git config --local uploadpack.allowfilter 1
git config --local uploadpack.allowanysha1inwant 1
v2.19.0の時点ではサーバーはサポートされていませんが、既にローカルでテストできます。
TODO:--filter=blob:none
すべてのblobをスキップしますが、それでもすべてのツリーオブジェクトをフェッチします。しかし、通常のレポでは、これはファイル自体と比較して小さいはずなので、これで十分です。質問:https : //www.spinics.net/lists/git/msg342006.html Devsが答えました--filter=tree:0
は、それを実現するための作業を進めていると。
--depth 1
すでに暗示されていることを忘れないで--single-branch
ください:https : //stackoverflow.com/questions/1778088/how-to-clone-a-single-branch-in-git
file://$(path)
git clone
プロトコルの問題を克服するために必要です: https //stackoverflow.com/questions/47307578/how-to-shallow-clone-a-local-git-repository-with-a-relative-path
の形式--filter
は文書化されていますman git-rev-list
ます。
この機能をサポートするために、Gitリモートプロトコルに拡張が行われました。
Gitツリー上のドキュメント:
試してみる
#!/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 directory from internet"
mv ../server_repo.off ../server_repo
git checkout master -- d1/
echo
echo "# Missing objects after checking out d1"
git rev-list --all --quiet --objects --missing=print
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
?8b25206ff90e9432f6f1a8600f87a7bd695a24af
?41484c13520fcbb6e7243a26fdb1fc9405c08520
?0975df9b39e23c15f63db194df7f45c76528bccb
結論:外部からのすべてのブロブd1/
が欠落しています。たとえば0975df9b39e23c15f63db194df7f45c76528bccb
、d2/b
チェックアウト後には存在しませんd1/
。
root/root
and mybranch/mybranch
も欠落していることに注意してください。ただし--depth 1
、欠落しているファイルのリストからそれを隠しています。を削除すると--depth 1
、不足しているファイルのリストに表示されます。
上記のおかげでようやく機能しました。私はファイルを直接編集していましたが、誤って引用符を含めることでエラーが発生しました。.git / info / sparse-checkoutファイルには、引用符ではなくディレクトリのみを含める必要があります。次に例を示します。この巨大なプロジェクト:https : //github.com/SharePoint/sp-dev-fx-webparts、サンプルディレクトリにあるreact-script-editorだけが必要でした。 https://github.com/SharePoint/sp-dev-fx-webparts/tree/master/samples/react-script-editor
上記の指示に従って、.git / info / sparse-checkoutファイルにこれだけが含まれているときに動作しました
samples / react-script-editor
これにより、特定のフォルダーが複製され、そのフォルダーに関係のないすべての履歴が削除されます。
git clone --single-branch -b {branch} git@github.com:{user}/{repo}.git
git filter-branch --subdirectory-filter {path/to/folder} HEAD
git remote remove origin
git remote add origin git@github.com:{user}/{new-repo}.git
git push -u origin master
GitHubリポジトリの場合、https://github.com/HR/github-cloneを使用して、GitHubリポジトリのサブディレクトリ(参照先)を複製できます。