blob: ce42c97617f1dee737ef48988c50457ce6e68103 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>git commit dependency graph</title>
<script language="javascript" type="text/javascript" src="node_modules/webcola/WebCola/cola.v3.min.js"></script>
<script language="javascript" type="text/javascript" src="js/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="css/animate.css" />
<link rel="stylesheet" type="text/css" href="css/git-deps.css" />
<link rel="stylesheet" type="text/css" href="css/git-deps-tips.css" />
</head>
<body>
<div id="page">
<div id="top">
<h1>git commit dependency graph</h1>
<p>
Use mouse-wheel to zoom.
Drag background to pan.
Hover over a commit for more information.
Double-click a commit to find dependencies of that commit.
</p>
<form class="commitish" action="#">
Detect dependencies for commit:
<input type="text" name="commitish" size="20"
value="master" autofocus />
<button>Submit</button>
<button type="button" onclick="full_screen_click()">Full screen</button>
<button type="button" onclick="zoom_to_fit()">Zoom to fit (or double click)</button>
</form>
</div>
<div id="svg-container" />
</div>
</body>
</html>
|