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

Run() public method

public Run ( ) : int
return int
        public int Run()
        {
            DescribeGit();

            DescribeGitTfs();

            var tfsRemotes = _globals.Repository.ReadAllTfsRemotes();
            foreach (var remote in tfsRemotes)
            {
                DescribeTfsRemotes(remote);
            }

            return GitTfsExitCodes.OK;
        }