GitCommands.GitCommands.UnstageFileToRemove C# (CSharp) Méthode

UnstageFileToRemove() public static méthode

public static UnstageFileToRemove ( string file ) : string
file string
Résultat string
        public static string UnstageFileToRemove(string file)
        {
            return RunCmd(Settings.GitCommand, "reset HEAD --" + " \"" + FixPath(file) + "\"");
        }
GitCommands