Depoun uzak URL'sini nasıl değiştirebiliriz?Libgit2sharp'daki bir deponun uzak URL'sini değiştirme
using (var repository = new Repository(repositoryPath))
{
//Change the remote url first
//Then checkout
}
Depoun uzak URL'sini nasıl değiştirebiliriz?Libgit2sharp'daki bir deponun uzak URL'sini değiştirme
using (var repository = new Repository(repositoryPath))
{
//Change the remote url first
//Then checkout
}
nasıl bir depo uzaktan url değiştirebilirim? Ne olursa olsun için
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);
, uzak özelliklerinin çoğu aynı model takip ederek güncellenebilir. Daha ayrıntılı örnekler için RemoteFixture.cs test kitinde bir göz atmaktan çekinmeyin.
genel sanal Uzaktan Güncelleştirmeyi (Uzak uzak, param Eylem [] eylemleri) kullanılmamışlar.
var newUrl = "https://github.com/owner/my_repository.git";
WorkingRepository.Network.Remotes.Update("origin", r => { r.Url = uri; });