GitCommands.GitCommands.UserCommitCount C# (CSharp) Method

UserCommitCount() public static method

public static UserCommitCount ( ) : string
return string
        public static string UserCommitCount()
        {
            return RunCmd(Settings.GitCommand, "shortlog -s -n");
        }
GitCommands