GitCommands.GitCommands.RebaseCmd C# (CSharp) Method

RebaseCmd() public static method

public static RebaseCmd ( string branch ) : string
branch string
return string
        public static string RebaseCmd(string branch)
        {
            return "rebase \"" + branch + "\"";
        }
GitCommands