Skip to content

Commit 9ff5d0e

Browse files
committed
chore: Merge branch 'main' of github.com:PGSch/graph-git-repo
2 parents d6c72a5 + dcaeb0d commit 9ff5d0e

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

MERMAID_DIAGRAM.md

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
# Mermaid Diagram
22

33
```mermaid
4-
graph TB
4+
graph TD
55
%% Repository Structure
66
subgraph graph_git_repo
7-
root[graph-git-repo]:::folder
8-
root --> gitignore[.gitignore]:::file
9-
root --> README[README.md]:::file
10-
root --> REPO_STRUCTURE[REPO_STRUCTURE.md]:::file
11-
root --> base[base.sh]:::file
12-
root --> tree_to_gpt[tree_to_gpt.py]:::file
7+
root[graph-git-repo]
8+
root --> gitignore[.gitignore]
9+
root --> license[LICENSE]
10+
root --> mermaid[MERMAID_DIAGRAM.md]
11+
root --> README[README.md]
12+
root --> repo_structure[REPO_STRUCTURE.md]
13+
root --> base[base.sh]
14+
root --> tree_to_gpt[tree_to_gpt.py]
1315
end
1416
style graph_git_repo fill:#e0f7fa,stroke:#333,stroke-width:2px;
15-
classDef folder fill:#80deea,stroke:#006064,stroke-width:2px;
16-
classDef file fill:#ffffff,stroke:#004d40,stroke-width:2px;
17+
style gitignore fill:#ffccbc,stroke:#333,stroke-width:1px;
18+
style license fill:#ffccbc,stroke:#333,stroke-width:1px;
19+
style mermaid fill:#ffccbc,stroke:#333,stroke-width:1px;
20+
style README fill:#ffccbc,stroke:#333,stroke-width:1px;
21+
style repo_structure fill:#ffccbc,stroke:#333,stroke-width:1px;
22+
style base fill:#ffccbc,stroke:#333,stroke-width:1px;
23+
style tree_to_gpt fill:#ffccbc,stroke:#333,stroke-width:1px;
1724
```

REPO_STRUCTURE.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
```markdown
33
graph-git-repo
44
├── .gitignore
5+
├── LICENSE
6+
├── MERMAID_DIAGRAM.md
57
├── README.md
68
├── REPO_STRUCTURE.md
79
├── base.sh

0 commit comments

Comments
 (0)