summaryrefslogtreecommitdiff
path: root/doc/tutorials
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-16 15:09:45 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-16 15:09:45 +0000
commit7212129029f4e7e68614066cc43802faba42c554 (patch)
treefa74d8e03c28a2dfed520e3ae4cea11c90830560 /doc/tutorials
parent93fb07b8c9edb0f3e860d7670b47e03a136d1a57 (diff)
downloadgitlab-ce-7212129029f4e7e68614066cc43802faba42c554.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/tutorials')
-rw-r--r--doc/tutorials/make_your_first_git_commit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorials/make_your_first_git_commit.md b/doc/tutorials/make_your_first_git_commit.md
index a35137e158b..be9023c6ae0 100644
--- a/doc/tutorials/make_your_first_git_commit.md
+++ b/doc/tutorials/make_your_first_git_commit.md
@@ -37,7 +37,7 @@ Each time you push a change, Git records it as a unique *commit*. These commits
the history of when and how a file changed, and who changed it.
```mermaid
-graph LR
+graph TB
subgraph Repository commit history
A(Author: Alex<br>Date: 3 Jan at 1PM<br>Commit message: Added sales figures for January<br> Commit ID: 123abc12) ---> B
B(Author: Sam<br>Date: 4 Jan at 10AM<br>Commit message: Removed outdated marketing information<br> Commit ID: aabb1122) ---> C
@@ -54,7 +54,7 @@ of a repository are in a default branch. To make changes, you:
1. When you're ready, *merge* your branch into the default branch.
```mermaid
-flowchart LR
+flowchart TB
subgraph Default branch
A[Commit] --> B[Commit] --> C[Commit] --> D[Commit]
end