Compare commits
1 Commits
main
...
feature/te
Author | SHA1 | Date | |
---|---|---|---|
5c23bb7dcb |
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
.ignore.txt
|
@ -2,28 +2,4 @@ Step 1 : Create new empty repository
|
||||
- Visited the Git-Training-Hub organization on Git Comorin
|
||||
- Created a new repository named as git-practice-Ajishini
|
||||
- Created with no README, no .gitignore and no license
|
||||
- 
|
||||
1. Checking Git Version
|
||||
- 
|
||||
2. Checking Git Status
|
||||
- 
|
||||
3. Adding Files to Staging
|
||||
- 
|
||||
4. Viewing Commit History
|
||||
- 
|
||||
5. Compact History (Oneline)
|
||||
- 
|
||||
6. Visual History (Graph)
|
||||
- 
|
||||
7. Checking Differences
|
||||
- 
|
||||
8. Comparing Two Commits
|
||||
- 
|
||||
9. Exploring Branches
|
||||
- 
|
||||
10. Cloning a Repository
|
||||
- 
|
||||
11. Pulling the Code
|
||||
- 
|
||||
12. Using gitignore
|
||||
- 
|
||||
- 
|
BIN
cloned-repo.png
Before Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 26 KiB |
BIN
git_commit.png
Before Width: | Height: | Size: 34 KiB |
BIN
git_diff.png
Before Width: | Height: | Size: 24 KiB |
BIN
git_ignore.png
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 22 KiB |
BIN
git_log.png
Before Width: | Height: | Size: 40 KiB |
BIN
git_pull.png
Before Width: | Height: | Size: 29 KiB |
BIN
git_version.png
Before Width: | Height: | Size: 21 KiB |
@ -1 +1 @@
|
||||
Create new text file
|
||||
Create new branch
|
@ -1,3 +1,2 @@
|
||||
- Text file
|
||||
- Changes changed
|
||||
- new line added
|
||||
- Changes changed
|
@ -1,7 +0,0 @@
|
||||
- Created readme.md in a repo and renamed it to README.md
|
||||
- 
|
||||
- Git didn’t 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
Before Width: | Height: | Size: 57 KiB |
BIN
repo_edit.png
Before Width: | Height: | Size: 14 KiB |
@ -1 +0,0 @@
|
||||
this is a txt file
|