You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Logger.WriteInfo(string.Format("No local branch with name {0} found, going to try on the remote {1}({2})",name,remote.Name,remote.Url));
75
-
try
76
-
{
77
-
repository.Network.Fetch(remote);
78
-
}
79
-
catch(LibGit2SharpExceptionexception)
80
-
{
81
-
if(exception.Message.Contains("This transport isn't implemented"))
82
-
{
83
-
varmessage=string.Format("Could not fetch from '{0}' since LibGit2 does not support the transport. You have most likely cloned using SSH. If there is a remote branch named '{1}' then fetch it manually, otherwise please create a local branch named '{1}'.",remote.Url,name);
0 commit comments