diff --git a/GIT_ASSIGNMENT.md b/GIT_ASSIGNMENT.md index c933d65..5e2640c 100644 --- a/GIT_ASSIGNMENT.md +++ b/GIT_ASSIGNMENT.md @@ -4,42 +4,57 @@ ## Git Version Check -![git version check](gitversion.png) +![Git version check](gitversion.png) --- ## Git Status -![git status](gitstatus.png) +![Git status](gitstatus.png) --- ## Git Add -![git add](gitadd.png) +![Git add](gitadd.png) --- ## Git Log -![git log](gitlog.png) +![Git log](gitlog.png) -## Git Log oneline +--- -![alt text]() +## Git Log (oneline) -## Git log online graph +![Git log oneline](gitoneline.png) -![alt text]() +--- + +## Git Log (graph) + +![Git log graph](loggraph.png) + +--- ## Git Diff -![alt text]() +![Git diff](gitdiff.png) -## Git diff commit1 commit2 +--- + +## Git Diff (commit1 vs commit2) + +![Git diff between two commits](compare.png) + +--- ### Notes: 1. **Git Version Check** – Confirms the installed Git version. 2. **Git Status** – Shows the current working tree status, including staged/unstaged changes. 3. **Git Add** – Adds changes to the staging area, preparing them for commit. +4. **Git Log** – Displays commit history. +5. **Git Log (oneline/graph)** – Shows simplified or visual commit history. +6. **Git Diff** – Shows changes between commits or working directory states. diff --git a/Screenshot 2025-08-20 145912.png b/compare.png similarity index 100% rename from Screenshot 2025-08-20 145912.png rename to compare.png diff --git a/Screenshot 2025-08-20 145521.png b/gitdiff.png similarity index 100% rename from Screenshot 2025-08-20 145521.png rename to gitdiff.png diff --git a/Screenshot 2025-08-20 145306.png b/gitoneline.png similarity index 100% rename from Screenshot 2025-08-20 145306.png rename to gitoneline.png diff --git a/Screenshot 2025-08-20 145355.png b/loggraph.png similarity index 100% rename from Screenshot 2025-08-20 145355.png rename to loggraph.png