add-glossar #9

Merged
joerglohrer merged 8 commits from add-glossar into change-studientag 2024-07-16 17:24:20 +00:00
Showing only changes of commit f2825a1b41 - Show all commits

View file

@ -1,14 +1,28 @@
# Gitgraph mit Mermaid
https://mermaid.js.org/syntax/gitgraph.html
## 3 Commits auf Main
```mermaid
gitGraph
commit id: "1. Commit"
commit id: "2. Commit"
commit id: "3. Commit"
```
## Branch Entwicklung
```mermaid ```mermaid
gitGraph gitGraph
commit commit id: "1. Commit"
commit commit id: "2. Commit"
branch develop branch Entwicklung
checkout develop checkout Entwicklung
commit commit id: "3. Commit"
commit commit id: "4. Commit"
checkout main checkout main
merge develop merge Entwicklung id: "Merge Request"
commit commit id: "Merge Commit"
commit commit id: "5. Commit"
``` ```