-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-graph.html
More file actions
63 lines (63 loc) · 2.33 KB
/
git-graph.html
File metadata and controls
63 lines (63 loc) · 2.33 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git Graph — kary-dental</title>
<style>
body { font-family: system-ui, sans-serif; margin: 2rem auto; max-width: 960px; background: #f8f9fa; }
h1 { font-size: 1.4rem; margin-bottom: 0.5rem; }
p { color: #666; font-size: 0.9rem; margin-bottom: 1.5rem; }
.mermaid { background: white; padding: 1.5rem; border-radius: 8px; border: 1px solid #ddd; }
</style>
</head>
<body>
<h1>kary-dental git history</h1>
<p>Recent branch/merge activity — updated 2026-04-09. Branch names shown without slashes (Mermaid v11 limitation).</p>
<!-- RULE: Every branch must merge back to main. Label fast-forward merges with id: "merge-ff" and three-way merges with id: "merge". Branch names: replace / with - for Mermaid compatibility. -->
<pre class="mermaid">
gitGraph
commit id: "XLSX export tool"
commit id: "Vinyl gallery"
commit id: "Delta XL reference"
commit id: "Drufomat setup guide"
commit id: "DMG RS5 STL generator"
commit id: "Compute gate"
commit id: "Delta XL handoff"
commit id: "VoiceStack IVR config"
branch claude-cleanup-merge
checkout claude-cleanup-merge
commit id: "Repo identity header"
checkout main
merge claude-cleanup-merge id: "3way"
branch claude-github-best-practices
checkout claude-github-best-practices
commit id: "Direct merge workflow"
checkout main
merge claude-github-best-practices id: "3way-2"
commit id: "Rescue office chair"
commit id: "Rescue sanitizer soap"
commit id: "Rescue biohazard chute"
commit id: "Rescue CareStack handoff"
commit id: "Stop tracking binaries"
commit id: "Broaden gitignore"
commit id: "Add settings json"
commit id: "Add shared-rules"
branch claude-scope-cleanup
checkout claude-scope-cleanup
commit id: "Scope cleanup"
commit id: "Batch 2 rename"
commit id: "Expand shared-rules"
commit id: "Add PreToolUse guard"
checkout main
merge claude-scope-cleanup id: "ff"
commit id: "Discuss Before Acting"
commit id: "Rule Hierarchy cleanup"
commit id: "Multi-Session rule"
</pre>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true, theme: 'default' });
</script>
</body>
</html>