在libgit2sharp中更改存储库的远程URL

时间:2015-05-15 09:32:41

标签: libgit2sharp

我们如何更改存储库的远程URL?

using (var repository = new Repository(repositoryPath))
{
    //Change the remote url first
    //Then checkout 
}

2 个答案:

答案 0 :(得分:7)

  

我们如何更改存储库的远程URL?

var newUrl = "https://github.com/owner/my_repository.git";";

Remote remote = repo.Network.Remotes[name];

// This will update the remote configuration, persist it
// and return a new instance of the updated remote

Remote updatedremote = repo.Network.Remotes.Update(remote, r => r.Url = newUrl);

对于它的价值,可以通过遵循相同的模式来更新大多数远程属性。请随时查看 RemoteFixture.cs 测试套件以获取更详细的示例。

答案 1 :(得分:0)

他们已经公共虚拟远程更新(远程远程,params Action []操作)已过时。

var newUrl = "https://github.com/owner/my_repository.git";
WorkingRepository.Network.Remotes.Update("origin", r => { r.Url = uri; });