Esempio n. 1
0
 public GitCredential(GitCredentials.Entry c)
 {
     name     = c.name;
     url      = c.url;
     username = c.username;
     password = c.password;
     isToken  = c.isToken;
 }
Esempio n. 2
0
 public GitCredential(GitCredentials.Entry c)
 {
     this.name        = c.name;
     this.url         = c.url;
     this.username    = c.username;
     this.password    = c.password;
     this.isToken     = c.isToken;
     this.newPassword = c.newPassword;
     this.hasPassword = c.hasPassword;
 }