Package org.eclipse.jgit.dircache.DirCacheEditor

Examples of org.eclipse.jgit.dircache.DirCacheEditor.DeleteTree


    }

    public CommitBuilder rm(String path) {
      DirCacheEditor e = tree.editor();
      e.add(new DeletePath(path));
      e.add(new DeleteTree(path));
      e.finish();
      return this;
    }
View Full Code Here


    }

    public CommitBuilder rm(String path) {
      DirCacheEditor e = tree.editor();
      e.add(new DeletePath(path));
      e.add(new DeleteTree(path));
      e.finish();
      return this;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.dircache.DirCacheEditor.DeleteTree

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.