libgit2 / libgit2/libgit2sharp
Commands.Run(string repoUrl, params string[] commands) missing
未关闭
还没有人认领这个 Issue。
- 主要语言
- C#
- 星标
- 3.5k
- 派生
- 925
- PR 合并指标
- 30 天内没有已合并 PR
描述
A great option to be added is: Commands.Run(string repoUrl, params string[] commands) method.
Examples:
Commands.Run(@"D:\repo", $"ls-remote {fromRepo} refs/heads/master");
Commands.Run(@"D:\repo", $"fetch --force --progress {fromRepo} master");
Commands.Run(@"file:///D:/repo", $"checkout master");
Commands.Run(@"file://localhost/repo", $"reset --hard FETCH_HEAD");
Commands.Run(@"git://localhost/repo", $"reflog expire --expire-unreachable=now --all", $"gc --prune=now");
Commands.Run(@"http://localhost/repo", $"update-server-info");
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先定位 Commands.Run 的入口点以及现有的命令执行测试。将请求的重载与本地路径和仓库 URL 的示例进行比较,然后添加测试覆盖,以证明支持多个命令以及列出的每种 URL 形式。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- csharp, git
- 领域
- api
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100