Upload files

This commit is contained in:
2025-08-21 09:25:37 +05:30
parent 13b61a07c1
commit d521a95303
16 changed files with 80 additions and 0 deletions

BIN
Config.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

77
GIT_ASSIGNMENT.md Normal file
View File

@ -0,0 +1,77 @@
<!-- @format -->
# Git Assignment
## 1. What is Git and Version Control
What problem does Git solve?
Git solves the problem of tracking changes in code and coordinating work across multiple developers.
Real-life example where multiple people edit the same file:
Real-life example: Several people editing a shared report in Word at the same time leads to conflicts and lost edits.
Why is version control better than emailing files back and forth?
Version control is better than emailing files because it keeps a single source of truth with automatic history and collaboration tools.
## Git Version Check
![Git version check](git.version.png)
---
## 2. Installing Git & Configuring User Info
![Git status](Config.png)
---
## Git List
![Git status](git.list.png)
---
## 3. Initializing a Repository
## Git Init
![Git add](git_int.png)
---
## 4. Working Directory, Staging, and Commits
## Git Add
![Git add](add_commit.png)
---
## 5. Adding & Committing Files
## Git Log
![Git log](git_log.png)
---
## 6. Viewing Commit Logs & Diffs
## Git Log (graph)
![Git log graph](git log_oneline.png)
---
## Git Diff
![Git diff](git_diff.png)
---
## Git Diff (commit1 vs commit2)
![Git diff between two commits](git_diff_between_commits.png)
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
add_commit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
add_notes.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
add_todo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

BIN
get_status.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
git log_oneline.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
git.list.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
git.version.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
git_diff.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
git_int.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
git_log.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

1
notes.txt Normal file
View File

@ -0,0 +1 @@
"This is a new note line"

2
todo.txt Normal file
View File

@ -0,0 +1,2 @@
"My first todo item"
"Another task to do"