mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-25 23:48:34 +02:00
beginning of graph file
This commit is contained in:
parent
fd0115e11e
commit
0112b3f839
2 changed files with 7 additions and 1 deletions
|
@ -9,6 +9,7 @@ var AnimationFactory = require('../visuals/animation/animationFactory').Animatio
|
|||
var AnimationQueue = require('../visuals/animation').AnimationQueue;
|
||||
var TreeCompare = require('./treeCompare').TreeCompare;
|
||||
|
||||
var Graph = require('../graph');
|
||||
var Errors = require('../util/errors');
|
||||
var Main = require('../app');
|
||||
var Commands = require('../commands');
|
||||
|
@ -970,7 +971,7 @@ GitEngine.prototype.getTargetGraphDifference = function(
|
|||
|
||||
var pushParent = function(parentID) {
|
||||
if (targetSet[parentID]) {
|
||||
// we already have this commit, lets bounce
|
||||
// we already have that commit, lets bounce
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
5
src/js/graph/index.js
Normal file
5
src/js/graph/index.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
var Graph = {
|
||||
};
|
||||
|
||||
module.exports = Graph;
|
Loading…
Add table
Add a link
Reference in a new issue