WindowLog.js
[gitlive] / test_git.js
index c27628a..aa68121 100644 (file)
@@ -1,24 +1,22 @@
 var Gtk = imports.gi.Gtk;
 
+var Repo = imports.Scm.Git.Repo.Repo;
+
+
 Gtk.init(Seed.argv);
 
+File = imports.File.File;
+
+var repo = new Repo({ repopath : '/home/alan/gitlive/gitlive' });
 
-/*
+repo.applyPatch(File.read('/tmp/test1.txt'));
+//var hist = repo.history('/', false, 'rev', 'github..master');
+//var hist = repo.getBranches();
 
+//var hist = repo.changedFiles('/',   'rev', 'github..master');
 
-var Git = imports.Git.Git;
-var git = new Git('/home/alan/gitlive/roojs1');
-git.async = true;
-var out = git.run(
-{ 'no-pager' : true },  
-   'log',
-   'github..master',
-   { 'no-color' : true },
-   { 'raw' : true },
-   { 'numstat' : true },
-   { 'date' : 'rfc' }  
-);
-print(out);
-*/
 
-Gtk.main();
\ No newline at end of file
+print(JSON.stringify(hist,null,4));
+  
+//Gtk.main();
\ No newline at end of file