6 Commits

Author SHA1 Message Date
ed6fdf856f added new steps 2025-09-04 12:22:05 +05:30
bb1bae28ee new file created 2025-09-04 11:56:09 +05:30
ba7836f784 modify a file 2025-09-01 18:04:43 +05:30
e51c034284 Updated file 2025-09-01 17:57:51 +05:30
2008e713fd update screenshot 2025-09-01 11:12:01 +05:30
0e620a0e8a added screenshot 2025-09-01 11:06:49 +05:30
13 changed files with 34 additions and 2 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
secret.txt
secret.txt
.env

View File

@ -2,4 +2,28 @@ Step 1 :Create new Repository
- Visited the Git-Training-Hub organization on Git Comorin
- Created a new repository named as git-practice-Jaya Lekshmi
- Created with no README, no .gitignore and no license
- ![Repository_Screenshot](GIT_ASSIGNMENT.png)
- ![Repository_Screenshot](GIT_ASSIGNMENT.png)
1. Checking Git Version
- ![Repository_Screenshot](git_version.png)
2. Checking Git Status
- ![Repository_Screenshot](git_status.png)
3. Adding Files to Staging
- ![Repository_Screenshot](git_add.png)
4. Viewing Commit History
- ![Repository_Screenshot](git_log.png)
5. Compact History (Oneline)
- ![Repository_Screenshot](git_log--oneline--graph.png)
6. Visual History (Graph)
- ![Repository_Screenshot](git_log--oneline--graph.png)
7. Checking Differences
- ![Repository_Screenshot](git_diff.png)
8. Comparing Two Commits
- ![Repository_Screenshot](git_diff_commit.png)
9. Exploring Branches
- ![Repository_Screenshot](git_branch.png)
10. Cloning a Repository
- ![Repository_Screenshot](cloned-repo.png)
11. Pulling the Code
- ![Repository_Screenshot](git_pull.png)
12. Using gitignore
- ![Repository_Screenshot](git_ignore.png)

BIN
cloned-repo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
git_add.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
git_branch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
git_diff_commit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
git_ignore.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
git_new_branch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
git_pull.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
git_version.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

7
readme.md Normal file
View File

@ -0,0 +1,7 @@
- Created readme.md in a repo and renamed it to README.md
- ![Repository_Screenshot](readme.png)
- Git didnt show changes because windows system is case-insensitive
- Fixed it using:
`git mv -f readme.md README.md`
`git commit -m "Rename readme.md to README.md"`
- Reason: Git is case-sensitive, but case-insensitive filesystems treat both names as the same

BIN
readme.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
repo_edit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB