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

Run() public method

public Run ( IGitTfsRemote remote ) : int
remote IGitTfsRemote
return int
        public int Run(IGitTfsRemote remote)
        {
            return CreateLabelsForTfsBranch(remote);
        }

Same methods

Labels::Run ( ) : int
Labels::Run ( string remoteId ) : int

Usage Example

Esempio n. 1
0
 private void FetchRemote(bool stopOnFailMergeCommit, IGitTfsRemote remote)
 {
     stdout.WriteLine("Fetching from TFS remote '{0}'...", remote.Id);
     DoFetch(remote, stopOnFailMergeCommit);
     if (labels != null && FetchLabels)
     {
         stdout.WriteLine("Fetching labels from TFS remote '{0}'...", remote.Id);
         labels.Run(remote);
     }
 }
All Usage Examples Of Sep.Git.Tfs.Commands.Labels::Run