Package org.eclipse.egit.ui.internal.repository.tree

Examples of org.eclipse.egit.ui.internal.repository.tree.StashedCommitNode


    case STASH:
      List<StashedCommitNode> stashNodes = new ArrayList<StashedCommitNode>();
      int index = 0;
      try {
        for (RevCommit commit : Git.wrap(repo).stashList().call())
          stashNodes.add(new StashedCommitNode(node, repo, index++,
              commit));
      } catch (Exception e) {
        handleException(e, node);
      }
      return stashNodes.toArray();
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.repository.tree.StashedCommitNode

Copyright © 2018 www.massapicom. 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.