来自网络文件共享的git checkout

问题描述 投票:1回答:1

我已经安装了git和tortoisegit成功创建了一个裸仓库

我的网络文件夹X:\\Test\\Test_Source\\Test_repo\\Test_Repo.git -> bare repo X:\\Test\\Test_Source\\Test_repo\\Test_Repo.git

这些是我回购中的文件夹

1. A 2. B 3. C

如何仅检出文件夹B

git svn tortoisesvn git-svn tortoisegit
1个回答
0
投票

您可以尝试以下命令:

git config core.sparsecheckout true
echo want/checkout/path/ >> .git/info/sparse-checkout
git read-tree --reset -u HEAD

注意:TortoiseGit尚不支持它,请参阅TortoiseGit发行号1599

© www.soinside.com 2019 - 2024. All rights reserved.