diff --git a/GIT_ASSIGNMENT.md b/GIT_ASSIGNMENT.md index dd8e487..3d8a243 100644 --- a/GIT_ASSIGNMENT.md +++ b/GIT_ASSIGNMENT.md @@ -104,6 +104,30 @@ --- +## 📥 Step 11: Pulling the Code + +🛰 _Fetched and merged updates from the remote repository using_ `git pull origin`. + +![Git pull](pull.png) + +--- + +## 🌐 Step 12: Checking Remote + +🔗 _Verified remote repository connections with_ `git remote -v`. + +![Git remote](remote.png) + +--- + +## 🚫 Step 13: Ignore File + +📄 _Added a `.gitignore` file to exclude unnecessary files like logs or temporary data._ + +![Git ignore](ignore.png) + +--- + # ✨ Wrap-Up Notes 1. ✅ **Git Version Check** – Confirmed installation. @@ -114,6 +138,9 @@ 6. ✅ **Git Diff** – Compared changes in files and commits. 7. ✅ **Git Branch** – Managed branches. 8. ✅ **Git Clone** – Pulled repo from remote. +9. ✅ **Git Pull** – Synced changes from remote. +10. ✅ **Git Remote** – Checked repository connections. +11. ✅ **Git Ignore** – Excluded unnecessary files. --- diff --git a/ignore.png b/ignore.png new file mode 100644 index 0000000..df6afb2 Binary files /dev/null and b/ignore.png differ diff --git a/pull.png b/pull.png new file mode 100644 index 0000000..5b27a29 Binary files /dev/null and b/pull.png differ diff --git a/remote.png b/remote.png new file mode 100644 index 0000000..ef1243c Binary files /dev/null and b/remote.png differ