cbf485384a
I got confused by it. It's now consistent with the other commands in its use of [] and non-delimited placeholders.
51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using NDesk.Options;
|
|
using StructureMap;
|
|
using Sep.Git.Tfs.Core;
|
|
|
|
namespace Sep.Git.Tfs.Commands
|
|
{
|
|
[Pluggable("unshelve")]
|
|
[Description("unshelve [options] shelve-name destination-branch")]
|
|
[RequiresValidGitRepository]
|
|
public class Unshelve : GitTfsCommand
|
|
{
|
|
private readonly Globals _globals;
|
|
private readonly TextWriter _stdout;
|
|
|
|
public Unshelve(Globals globals, TextWriter stdout)
|
|
{
|
|
_globals = globals;
|
|
_stdout = stdout;
|
|
}
|
|
|
|
public string Owner { get; set; }
|
|
|
|
public OptionSet OptionSet
|
|
{
|
|
get
|
|
{
|
|
return new OptionSet
|
|
{
|
|
{ "u|user=", "Shelveset owner (default: current user)\nUse 'all' to search all shelvesets.",
|
|
v => Owner = v },
|
|
};
|
|
}
|
|
}
|
|
|
|
public int Run(string shelvesetName, string destinationBranch)
|
|
{
|
|
var remote = _globals.Repository.ReadTfsRemote(_globals.RemoteId);
|
|
remote.Unshelve(Owner, shelvesetName, destinationBranch);
|
|
_stdout.WriteLine("Created branch " + destinationBranch + " from shelveset \"" + shelvesetName + "\".");
|
|
return GitTfsExitCodes.OK;
|
|
}
|
|
}
|
|
}
|