Ver código fonte

LsTree: quote paths in output

Change-Id: Ic78d5b41e057fcd3282e97ac73ed506666f28f88
tags/v3.4.0.201405211411-rc1
Dave Borowitz 10 anos atrás
pai
commit
b4abb0d849

+ 2
- 1
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/LsTree.java Ver arquivo

@@ -53,6 +53,7 @@ import org.eclipse.jgit.lib.FileMode;
import org.eclipse.jgit.treewalk.AbstractTreeIterator;
import org.eclipse.jgit.treewalk.TreeWalk;
import org.eclipse.jgit.treewalk.filter.PathFilterGroup;
import org.eclipse.jgit.util.QuotedString;
import org.kohsuke.args4j.Argument;
import org.kohsuke.args4j.Option;
import org.kohsuke.args4j.spi.StopOptionHandler;
@@ -90,7 +91,7 @@ class LsTree extends TextBuiltin {
outw.print(walk.getObjectId(0).name());

outw.print('\t');
outw.print(walk.getPathString());
outw.print(QuotedString.GIT_PATH.quote(walk.getPathString()));
outw.println();
}
}

Carregando…
Cancelar
Salvar