Add git pull, remote, ignore files

This commit is contained in:
Vipinraj01
2025-08-28 09:56:17 +05:30
parent cffb0fb5f2
commit 04aaab09c4
4 changed files with 27 additions and 0 deletions

View File

@ -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 # ✨ Wrap-Up Notes
1.**Git Version Check** Confirmed installation. 1.**Git Version Check** Confirmed installation.
@ -114,6 +138,9 @@
6.**Git Diff** Compared changes in files and commits. 6.**Git Diff** Compared changes in files and commits.
7.**Git Branch** Managed branches. 7.**Git Branch** Managed branches.
8.**Git Clone** Pulled repo from remote. 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.
--- ---

BIN
ignore.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

BIN
pull.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
remote.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB