Examples of DescribeCommand


Examples of henplus.commands.DescribeCommand

        _dispatcher.register(new ConnectCommand(this, _sessionManager));
        _dispatcher.register(new StatusCommand());

        _dispatcher.register(_objectLister);
        _dispatcher.register(new DescribeCommand(_objectLister));

        _dispatcher.register(new TreeCommand(_objectLister));

        _dispatcher.register(new SQLCommand(_objectLister, _henplusProperties));
View Full Code Here

Examples of org.eclipse.jgit.api.DescribeCommand

  @Argument(index = 0, metaVar = "metaVar_treeish")
  private ObjectId tree;

  @Override
  protected void run() throws Exception {
    DescribeCommand cmd = new Git(db).describe();
    if (tree != null)
      cmd.setTarget(tree);
    String result = null;
    try {
      result = cmd.call();
    } catch (RefNotFoundException e) {
      throw die(CLIText.get().noNamesFound, e);
    }
    if (result == null)
      throw die(CLIText.get().noNamesFound);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.