如何使用GitSharp(Git for .NET和Mono)通过SSH推送对远程服务器的更改?
答案 0 :(得分:3)
理论上,是的,最新的GitSharp 0.3 release(2010年6月)包括:
传输代码中的错误修复(推送 /通过http或 ssh 获取)
对象传输
- 通过ssh,git,http和bundles获取。
- 通过ssh推送,git。 Git#还没有令人满意 被推包装所以它们可能比C Git包大很多。
你会在this thread中找到这样一个推送(通过ssh)的例子:
Repository repository = new Repository(@"\path\to\my_repos");
repository.Index.Add(@"\path\to\my_file");
Commit commited = repository.Commit("Testing fromGitC#", new Author("Author", "...@aCompany.com"));
if(commited.IsValid) {
PushCommand pushCommand = new PushCommand {
RefSpecs = new List<RefSpec> {
new RefSpec("HEAD", "refs/for/master")
},
Force = true,
Repository = repository
};
pushCommand.AddAll();
pushCommand.Execute();
}
答案 1 :(得分:2)
GitSharp基于JGit的手动端口,从Java到C#。还有另一个项目是半自动的(目的是添加到MonoDevelop)
http://foodformonkeys.blogspot.com/2010/10/ngit.html
https://github.com/slluis/ngit
关于NGIT
NGit是JGit [1]到C#的一个端口。这个 端口是半自动生成的 使用Sharpen [2],Java-to-C# 转换效用。
NGit提供所有功能 由JGit实施,包括所有 存储库操作原语和 传输协议。 SSH支持是 由jsch港[3]提供, 包含在项目中。
该项目由4个人组成 库: - NGit:git库。 - NGit.Test:NGit的单元测试 - NSch:jsch的端口。 - 锐化:上述库所需的一些支持类。