/Mercurial.Net/Gui/InitGuiCommand.cs

# · C# · 18 lines · 10 code · 0 blank · 8 comment · 0 complexity · b5bfc6312ee14878c03af6c7fb842814 MD5 · raw file

  1. namespace Mercurial.Gui
  2. {
  3. /// <summary>
  4. /// Implements the TortoiseHg "init" command (<see href="http://tortoisehg.bitbucket.org/manual/2.0/init.html#from-command-line"/>):
  5. /// Initialize a new repository.
  6. /// </summary>
  7. public sealed class InitGuiCommand : GuiCommandBase<InitGuiCommand>
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="InitGuiCommand"/> class.
  11. /// </summary>
  12. public InitGuiCommand()
  13. : base("init")
  14. {
  15. // Do nothing here
  16. }
  17. }
  18. }