// var gh = new com.ibm.sbt.playground.git.GitImport("https://api.github.com",null,"OpenNTF/SocialSDK")
public void browse(String path) throws Exception {
GitVFS vfs = new GitVFS("https://api.github.com/repos/OpenNTF/SocialSDK/contents/samples/j2ee/com.ibm.sbt.sample.web/WebContent/js/","priand","xxxxxx");
VFSFile f = vfs.getRoot().getChild("Smartcloud").getChild("Profiles").getChild("Get About.js");
System.out.println("File:"+f.getName());
InputStream is = f.getInputStream();
try {
FastStringBuffer fb = new FastStringBuffer();
fb.append(new InputStreamReader(is));
String s = fb.toString();
System.out.println(s);