Commit 0c70afb6 authored by Kati Paizee's avatar Kati Paizee

Merge branch 'selhorn-tutorial-small-image-updates' into 'master'

Added commit message image

See merge request gitlab-org/gitlab!83562
parents 4c6b42a8 7c26f0f6
...@@ -6,8 +6,9 @@ info: To determine the technical writer assigned to the Stage/Group associated w ...@@ -6,8 +6,9 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Make your first Git commit # Make your first Git commit
This tutorial is going to teach you a little bit about how Git works, and walk This tutorial is going to teach you a little bit about how Git works. It walks
you through the steps of creating your own project and editing a file. you through the steps of creating your own project, editing a file, and
committing changes to a Git repository from the command line.
When you're done, you'll have a project where you can practice using Git. When you're done, you'll have a project where you can practice using Git.
...@@ -245,15 +246,20 @@ to merge your branch. ...@@ -245,15 +246,20 @@ to merge your branch.
You did it! You updated the `README.md` file in your branch, and you merged those changes You did it! You updated the `README.md` file in your branch, and you merged those changes
into the `main` branch. into the `main` branch.
Let's look in the UI and confirm it. Let's look in the UI and confirm your changes. Go to your project.
1. In your project, scroll down and view the `README.md` file. - Scroll down and view the contents of the `README.md` file.
Your changes should be visible. Your changes should be visible.
1. Above the list of files, select **History**. - Above the `README.md` file, view the text in the `Last commit` column.
Your commit and commit message should display. Your commit message is displayed in this column:
Now you can change back to your personal branch (`git checkout example-tutorial-branch`) ![Commit message](img/commit_message_v14_10.png)
and continue updating or even creating files. Type `git status` to view the status
- Above the file list, select **History** to view your commit details.
Now you can return to the command line and change back to your personal branch
(`git checkout example-tutorial-branch`). You can continue updating files or
creating new ones. Type `git status` to view the status
of your changes and commit with abandon. of your changes and commit with abandon.
Don't worry if you mess things up. Everything in Git can be reverted, and if you Don't worry if you mess things up. Everything in Git can be reverted, and if you
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment