- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
本地目录的浅克隆需要 file://
,如以下解释:git clone: warning: --depth is ignored in local clones; use file:// instead
但是如何使用相对路径呢?
例如:如果我在当前目录中有一个 repo myrepo
,然后我会这样做:
git clone --depth 1 file://mymodule mymodule2
然后它失败了:
Cloning into 'mymodule2'...
fatal: No path specified. See 'man git-pull' for valid url syntax
如果我尝试:
git clone --depth 1 file://./mymodule mymodule2
它失败了:
Cloning into 'mymodule2'...
fatal: '/./mymodule' 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 clone --depth 1 "file://$(pwd)/mymodule" mymodule2
这种行为是否有深刻的原因,或者它只是错误?
也许文件 URI 根本不支持相对路径:
git 2.14.1.
最佳答案
浅克隆本地存储库既没有必要也没有好处。只需 git clone ./relative/path
就可以了。
我假设你想要浅拷贝是因为你想节省磁盘空间和时间,但是
<强>1。它不会在本地克隆中节省磁盘空间。
来自 Git 2.24.1 手册:
For local repositories, also supported by Git natively, the following syntaxes may be used:
• /path/to/repo.git/
• file:///path/to/repo.git/
These two syntaxes are mostly equivalent, except the former implies --local option.
和
-l, --local
When the repository to clone from is on a local machine, this flag bypasses the normal "Git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories. The files under .git/objects/ directory are hardlinked to save space when possible.
因此,使用 file:///path/to/repo.git/
语法的浅拷贝应该比使用 /path/to/repo.git 的完整副本消耗更多的磁盘空间/
语法,因为前者具有对象的真实副本而不是硬链接(hard link)。
(我相信硬链接(hard link)是设置 --local
时 --depth
被忽略的原因。)
<强>2。它也不会节省时间。
仍然是 Git 2.24.1 手册:
-l, --local
When the repository to clone from is on a local machine, this flag bypasses the normal "Git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories. The files under .git/objects/ directory are hardlinked to save space when possible.
即使 URI 是 file://...
,“Git aware”传输机制也很耗时,因为它包括对象压缩:
$ time git clone --depth 1 --local --shallow-submodules file://$(pwd)/../linux
Cloning into 'linux'...
warning: --local is ignored
remote: Enumerating objects: 65607, done.
remote: Counting objects: 100% (65607/65607), done.
remote: Compressing objects: 100% (61137/61137), done.
remote: Total 65607 (delta 4886), reused 39965 (delta 3556)
Receiving objects: 100% (65607/65607), 176.65 MiB | 10.81 MiB/s, done.
Resolving deltas: 100% (4886/4886), done.
Updating files: 100% (61793/61793), done.
git clone --depth 1 --local --shallow-submodules 73.55s user 4.97s system 245% cpu 31.976 total
(不知道为什么我的NVMe SSD接收速度是10.81MiB/s)
并且使用 --local
标志进行克隆要快得多:
$ time git clone ../linux
Cloning into 'linux'...
done.
Updating files: 100% (61793/61793), done.
git clone ../linux 4.16s user 1.71s system 100% cpu 5.857 total
关于git - 如何浅克隆具有相对路径的本地 git 存储库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47307578/
免责声明 这篇文章是关于术语“浅拷贝”和“深拷贝”的正确用法,特别是在谈论复制一个不包含任何引用的对象时。这个问题并不意味着(也不应该)基于意见,除非真的没有关于这个话题的共识。我已将此问题标记为 C
我有这个功能 int getrelation(string name, RELATION& output){ bool found=0; int index=0;
与 why should I make a copy of a data frame in pandas 有关 我注意到在流行的backtesting图书馆, def __init__(self, d
我的问题很基础,但我想 100% 理解所有内容。 SO中的很多问题都引用了我的帖子,但我没有找到满意的答案。 我们知道java中的枚举是引用类型。让我们考虑以下片段: public static cl
请引用这个 fiddle 的问题。 http://jsfiddle.net/AQR55/ 1)为什么附加到隔离范围属性的 watch - 双向绑定(bind)到父属性,不会在更改父范围属性时触发。 在
我想使用 UP3 来完成一项非常具体的任务,我应该能够使用 API 来实现该任务。我想了解是否可以编写以下应用程序。 基于https://jawbone.com/support/articles/00
如何在辅助方法中传递上下文并提取数据? 请参阅以下代码片段: import AppContext from '../../context/AppContext' import extractDatta
我正在尝试使用 simple-git 创建浅克隆。我正在尝试创建与此命令等效的命令:git clone --depth 1 https://github.com/steveukx/git-js.git
我是一名优秀的程序员,十分优秀!