From f1b6cc639b925338f4abfa0b983a217dcdccdad2 Mon Sep 17 00:00:00 2001 From: Magdel Date: Sun, 17 Aug 2025 15:05:39 +0000 Subject: [PATCH] Update GIT_ASSIGNMENT.md #3 Done on GIT bash desktop --- GIT_ASSIGNMENT.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/GIT_ASSIGNMENT.md b/GIT_ASSIGNMENT.md index e290dbd..3e3a38a 100644 --- a/GIT_ASSIGNMENT.md +++ b/GIT_ASSIGNMENT.md @@ -29,3 +29,29 @@ Assignment: Verify with: git config --list + +3. Initializing a Repository + +Assignment: + + Create a new folder git-practice-<>. + + Inside, run: + + git init + +Verify that a .git folder is created. + +Run git status and note the message (it should say “No commits yet”). + +mkdir git-practice-Mag +git init + +ls -a verify folder +git status nothing added to commit but untracked files present (use "git add" to track) + + + + + +