for (String path : paths)
jsonPaths.put(path);
body.put(ProtocolConstants.KEY_PATH, jsonPaths);
if (removeUntracked)
body.put(GitConstants.KEY_REMOVE_UNTRACKED, removeUntracked);
WebRequest request = new PutMethodWebRequest(requestURI, IOUtilities.toInputStream(body.toString()), "UTF-8");
request.setHeaderField(ProtocolConstants.HEADER_ORION_VERSION, "1");
setAuthentication(request);
return request;
}