working on origin

This commit is contained in:
Peter Cottle 2013-05-13 10:01:41 -07:00
parent da53aabe13
commit dd9f05eaa3
6 changed files with 97 additions and 30 deletions

View file

@ -68,6 +68,14 @@ GitEngine.prototype.init = function() {
this.commit();
};
GitEngine.prototype.hasOrigin = function() {
return false;
};
GitEngine.prototype.isOrigin = function() {
return false;
};
GitEngine.prototype.exportTree = function() {
// need to export all commits, their connectivity / messages, branches, and state of head.
// this would be simple if didn't have circular structures.... :P