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
//If noFetch is enabled, then GitVersion will assume that the git repository is normalized before execution, so that fetching from remotes is not required.
16
-
if(noFetch)
17
-
{
18
-
Logger.WriteInfo("Skipping fetching");
19
-
return;
20
-
}
21
-
22
15
using(varrepo=newRepository(gitDirectory))
23
16
{
24
17
varremote=EnsureOnlyOneRemoteIsDefined(repo);
@@ -28,8 +21,14 @@ public static void NormalizeGitDirectory(string gitDirectory, Authentication aut
28
21
Logger.WriteInfo(string.Format("Fetching from remote '{0}' using the following refspecs: {1}.",
//If noFetch is enabled, then GitVersion will assume that the git repository is normalized before execution, so that fetching from remotes is not required.
0 commit comments