Sep.Git.Tfs.Commands.Branch.Run C# (CSharp) Method

Run() public method

public Run ( ) : int
return int
        public int Run()
        {
            if (!IsCommandWellUsed())
                return _helper.Run(this);

            _globals.WarnOnGitVersion();

            VerifyCloneAllRepository();

            if (ShouldRenameRemote || ShouldDeleteRemote)
                return _helper.Run(this);

            if (ShouldInitBranch)
            {
                SetInitBranchParameters();
                return _initBranch.Run();
            }

            return DisplayBranchData();
        }

Same methods

Branch::Run ( string param ) : int
Branch::Run ( string param1, string param2 ) : int