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
gitGraph
commit
commit
branch develop
checkout develop
commit
commit
commit id: "1. Commit"
commit id: "2. Commit"
branch Entwicklung
checkout Entwicklung
commit id: "3. Commit"
commit id: "4. Commit"
checkout main
merge develop
commit
commit
merge Entwicklung id: "Merge Request"
commit id: "Merge Commit"
commit id: "5. Commit"
```