- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从以下几个教程步骤中重现:
https://github.blog/2020-01-17-bring-your-monorepo-down-to-size-with-sparse-checkout
这是为 git 2.25 制作的,但现在在 2.27 中,运行时什么也没有发生:
$ git sparse-checkout set client/android
$ git clone --no-checkout https://github.com/derrickstolee/sparse-checkout-example
Cloning into 'sparse-checkout-example'...
$ cd sparse-checkout-example/
$ git sparse-checkout init --cone
$ ls -a
. .. bootstrap.sh LICENSE.md README.md .git
$ ls -a
. .. .git
最佳答案
我相信我找到了原因。提交 f56f31af0301
到 Git 更改了 sparse-checkout
的实现所以,当你有一个未初始化的工作树时(就像你在运行 git clone --no-checkout
之后一样),运行 git sparse-checkout init
不会将任何文件 check out 到您的工作树中。在以前的版本中,该命令实际上会 check out 文件,这可能会产生意想不到的效果,因为此时您没有事件分支。
相关提交,f56f31af0301
已包含在 Git 2.27 中,但未包含在 2.25 中。这解释了为什么您看到的行为不是您试图遵循的网页上显示的行为。基本上,网页上的行为是一个错误,当时没有人意识到这是一个错误,但在 Git 2.27 中,它已被修复。
我认为,这在提交 b5bfc08a972d
的消息中得到了很好的解释。 :
So...that brings us to the special case: a git clone performed with
--no-checkout
. As per the meaning of the flag,--no-checkout
does not check out any branch, with the implication that you aren't on one and need to switch to one after the clone. Implementationally,HEAD
is still set (so in some sense you are partially on a branch), but
- the index is "unborn" (non-existent)
- there are no files in the working tree (other than
.git/
)- the next time
git switch
(orgit checkout
) is run it will run unpack_trees withinitial_checkout
flag set to true.It is not until you run, e.g.
git switch <somebranch>
that the index will be written and files in the working tree populated.With this special
--no-checkout
case, the traditionalread-tree -mu HEAD
behavior would have done the equivalent of acting likecheckout
-- switch to the default branch (HEAD
), write out an index that matchesHEAD
, and update the working tree to match. This special case slipped through the avoid-making-changes checks in the originalsparse-checkout
command and thus continued there.After
update_sparsity()
was introduced and used (see commitf56f31a
("sparse-checkout: use new update_sparsity() function
", 2020-03-27)), the behavior for the--no-checkout
case changed: Due to git's auto-vivification of an empty in-memory index (seedo_read_index()
and note thatmust_exist
is false), and due tosparse-checkout
'supdate_working_directory()
code to always write out the index after it was done, we got a new bug. That made it so thatsparse-checkout
would switch the repository from a clone with an "unborn" index (i.e. still needing aninitial_checkout
), to one that had a recorded index with no entries. Thus, instead of all the files appearing deleted ingit status
being known to git as a special artifact of not yet being on a branch, our recording of an empty index made it suddenly look to git as though it was definitely on a branch with ALL files staged for deletion! A subsequent checkout or switch then had to contend with the fact that it wasn't on aninitial_checkout
but had a bunch of staged deletions.
关于git - 如何在 2.27+ 中使用 git sparse-checkout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62423920/
有人知道什么时候最好选择哪个吗?在我看来,它们是一样的... lsmr lsqr 最佳答案 两种软件包的功能相同。 LSMR基于2010年的Fong&Saunders算法(请参阅paper),并且最近
似乎 scipy.sparse.linalg 的迭代求解器不支持 scipy.sparse 的稀疏矩阵数据类型作为方程系统的右侧(而直接求解器会)。考虑以下简短示例: import numpy as
我有一个包含多个字符串列的数据框,我想将其转换为分类数据,以便我可以运行一些模型并从中提取重要特征。 但是,由于唯一值的数量,单热编码数据会扩展到大量列,从而导致性能问题。 为了解决这个问题,我正在试
我有一些需要每天同步的 VM 镜像。 VM 文件是稀疏的。 为了节省网络流量,我只想传输图像的真实数据。 我在 rsync 中使用 --sparse 选项进行尝试,但在网络流量上,我看到整个大小都通过
我有一些不明白的信息: Bigtable may be understood a sparse table. Most cells contain nullvalues - too sparse to
我一直在查看 Matlab 的 sparse documentation试图找出是否有任何指导方针来说明何时使用稀疏表示而不是完整表示是有意义的。 例如,我有一个包含大约 30% 非零条目的矩阵 da
当我尝试编译以下程序时,编译器提示 j 和 row 未声明,这让我感到惊讶,因为 Chapel - Ranges defined using bounds of type 'range(int(64)
我需要以某种方式在磁盘上存储一个 512^3 阵列,我目前使用的是 HDF5。由于阵列稀疏,因此浪费了大量磁盘空间。 HDF5 是否为稀疏数组提供任何支持? 最佳答案 一种解决方法是使用 compre
稀疏张量与自身或密集张量的乘法在 TensorFlow 中似乎不起作用。下面的例子 from __future__ import print_function import tensorflow as
我有一个git存储库,其中有一堆大型csv,我不想克隆,因此我遇到了git sparse-checkout和这篇文章:https://github.blog/2020-01-17-bring-your
是否有一种简单的方法可以按列贬低稀疏矩阵,同时将零值视为缺失(使用 Matrix 包)? 我似乎遇到两个问题: 找到合适的列意味着 空单元格被视为零而不是缺失: M0 或者@user20650评论
我在训练具有稀疏输入数据的神经网络以解决监督回归问题时遇到问题。当我对输入数据执行均值归一化(减去均值再除以标准差)时,我得到了很多NaN值。我想知道是否有人有处理此类问题的经验。缩放稀疏输入数据的正
在 Eigen 中编辑稀疏矩阵对角线的最快方法是什么?我已经使用三元组填充了它,但我偶尔需要更改所有对角线值(它们已经设置为非零值)。 最佳答案 如果可以接受,您可以简单地使用它们的索引,例如 sp_
我看到“稀疏”和“稀疏”的使用方式表明它可以提高模型的准确性。例如: I think the unsupervised phase might be not so important if some
MATLAB Coder 似乎很花哨,可以通过将代码转换为 C/C++ 或 MEX 来加快 MATLAB 代码的速度。但是它似乎不支持稀疏矩阵,或者 matlab 函数 sparse 这对我的代码至关
我有一个使用 scipy.sparse.linalg.gmres 求解稀疏线性系统的简单代码 W, S = load_data() M = normalize(W.T.astype('float64
我正在尝试创建一个大小为 n 的多维数组(其中 n 是符号形状张量的一部分)。该数组在每个区域中都应有 0,但很少有区域是变量 b_class。 这是一个简单的 Numpy 实现,但在这种情况下,我们
Java 7 defines this option ,但我不明白它的用处。考虑这个简单的程序,它在一台足够新的 Linux 机器上运行,带有 Java 6 JVM: public static vo
我有一个 CSR matrix : >> print type(tfidf) 我想对 CSR matrix 的两行进行点积: >> v1 = tfidf.getrow(1) >> v2 = tfid
尽管一切似乎都已矢量化,但以下代码运行速度太慢。 from numpy import * from scipy.sparse import * n = 100000; i = xrange(n); j
我是一名优秀的程序员,十分优秀!