Package org.eclipse.jgit.revwalk

Examples of org.eclipse.jgit.revwalk.RevTag


      needs(p);
    obj.add(COMPLETE);
  }

  private void processTag(final RevObject obj) {
    final RevTag tag = (RevTag) obj;
    needs(tag.getObject());
    obj.add(COMPLETE);
  }
View Full Code Here


      FIFORevQueue pending) throws IOException {
    if (ref.getObjectId() == null)
      return;
    RevObject o = walk.parseAny(ref.getObjectId());
    while (o instanceof RevTag) {
      RevTag t = (RevTag) o;
      nonCommits.put(o, ref.getName());
      o = t.getObject();
      walk.parseHeaders(o);
    }
    if (o instanceof NameRevCommit) {
      NameRevCommit c = (NameRevCommit) o;
      if (c.tip == null)
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.revwalk.RevTag

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.