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

Run() public method

public Run ( ) : int
return int
        public int Run()
        {
            _cleanupOptions.Init();
            foreach (var remote in _globals.Repository.ReadAllTfsRemotes())
            {
                Cleanup(remote);
            }
            return GitTfsExitCodes.OK;
        }

Same methods

CleanupWorkspaceLocal::Run ( IList remoteIds ) : int