libgit2 / libgit2/libgit2sharp
option to not update submodules when doing checkout
还没有人认领这个 Issue。
- 主要语言
- C#
- 星标
- 3.5k
- 派生
- 925
- PR 合并指标
- 30 天内没有已合并 PR
描述
it seems to be a known issue that, at least when there are numerous binary files in a submodule, the submodule update process takes much longer than specifically checking out each submodule. I am, using libgit2sharp to do these checkouts, but the checkout on the superproject takes much longer (~5 sec for super vs <0.1sec for each submodule).
It looks like Commands.Checkout is, effectively, running:
git checkout [sha]
git submodule update --recursive -f
or something like it, but I just want the first line, not both. Is there some repositoryOption or CheckoutOption or something I can use to use it like this?
my usage of ligit2sharp is:
using (Repository repo = new Repository(filePath))
{
//logging and timing
Commands.Checkout(
repo,
commit,
new CheckoutOptions() { CheckoutModifiers = CheckoutModifiers.Force }
);
//logging and timing
}
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 issue 中所示的 Commands.Checkout、CheckoutOptions 和 CheckoutModifiers 类型开始,然后跟踪子模块更新在哪里被触发。验证 checkout 行为,并确定如何通过一个选项抑制该更新;完成的标准是 checkout 可以跳过子模块更新,同时默认保留现有行为,并为新选项添加覆盖测试。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- csharp, git
- 领域
- tooling
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 42/100