Files
git-practice-Asaph/GIT_ASSIGNMENT.md
2025-08-20 16:38:35 +05:30

971 B
Raw Blame History

Git Assignment

Git Version Check

alt text

Git Status

alt text


Git list

alt text


Git Add

alt text


Git commit

alt text

--

Git Log

alt text

alt text

Git Log (oneline)

alt text

Git Log (graph)

alt text

Git Diff

alt text

Git Diff (commit1 vs commit2)


Notes:

  1. Git Version Check Displays the currently installed Git version on your system.
  2. Git Status Shows the current working tree status, including staged/unstaged changes.
  3. Git Add Stages file changes, moving them into the index ready for the next commit.
  4. Git Log Displays commit history.
  5. Git Log (oneline/graph) Shows simplified commit history.
  6. Git Diff changes between commits or working directory states.