From ab960ffea98cbc959288788d3ae3635cad011e6a Mon Sep 17 00:00:00 2001 From: medeju Date: Sat, 4 Apr 2026 17:29:18 +0200 Subject: [PATCH] 1. First, let's check the status of our working tree: git status 2. Move the file from the working tree to the staging area: git add my-file.md 3. Let's see what happened: git status 4. Now let's take our first snapshot: git commit 5. Git will open your default text editor to request a commit message. Simply type your message on the top line of the file. Any line without a # will be included in the commit message. 6. Save and close the commit message 7. Let's take another look at our repository status: git status --- my-file.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 my-file.md diff --git a/my-file.md b/my-file.md new file mode 100644 index 000000000..e69de29bb