Exemple #1
0
 private void UpdateRemotes()
 {
     remotes         = GitManager.Repository.Network.Remotes;
     remoteCacheList = remotes.Select(r => new RemoteEntry(r)).ToArray();
     remoteNames     = remotes.Select(r => r.Name).ToArray();
 }
Exemple #2
0
 public AddRepositoryPopup(RemoteCollection remoteCollection)
 {
     this.remoteCollection = remoteCollection;
 }
 public AddRepositoryPopup(GitManager gitManager, RemoteCollection remoteCollection)
 {
     this.gitManager       = gitManager;
     this.remoteCollection = remoteCollection;
 }
Exemple #4
0
 public void Update(RemoteCollection remotes)
 {
     remotes.Update(remote, UpdateAction);
     Update();
 }
Exemple #5
0
 public NetworkEx()
 {
     _remotes = new RemoteCollectionEx();
 }