Skip to content
SAGARFIVE
Linux
Networking
Git
Maven
Jenkins
Docker
Ansible
Terrafom
AWS
SQL
Menu
Linux
Networking
Git
Maven
Jenkins
Docker
Ansible
Terrafom
AWS
SQL
Search
SAGAR5
Search
Linux
Networking
Git
Maven
Jenkins
Docker
Ansible
Terrafom
AWS
SQL
Menu
Linux
Networking
Git
Maven
Jenkins
Docker
Ansible
Terrafom
AWS
SQL
GIT
Git Tutorials
6. Git Add
6.3 Git rm
1. Introduction
1.1 - What is git ?
1.2 - Uses cases of git
1.3 - Advantages of git
1.4 - features of git
1.5 - Competitors of the git
1.6 - What is github
1.7 - Git vs SVN vs Mercurial
2. Git Basics
2.1 - Git installation
2.2 - Git Configuration
2.3 - Git WorkFlow
2.4 - Git Lifecycle
2.5 - Git Terminology
3. Git Terminology
3.1 - Source Code Management
3.2 - Version Control System
3.3 - Centralised Version Control System vs Distributed Version Control System
3.4 - What is Repository & Types ?
3.5 - What is Git bare repository ?
3.6 - Working Directory
3.7 - Staging Area
3.8 - Git local Repository
3.9 - Git Head, Git Log and Git Reflog
4. Git Branching
4.1 - Git Branch
4.2 - Git Creating Mutli branches
4.3 - Git checkout branch
4.4 - Git branch File hierarchy
4.5 - Git branch Merge
4.6 - Git Merge Conflict
5. Git - Github
5.1 - Github Account Creating
5.2 - Git Repostory Creating
5.3 - Uploading Local Repository to Github
5.4 - Git Repostory Cloning
5.5 - Git Repostory Cloning & Pushing
5.6 - Github Authentication
6. Git Add (Git staging)
6.1 - Git Add
6.2 - Git Status
6.3 - Git rm
6.4 - .gitignore
6.5 - Git stash
6.6 - Git diff
7. Git Commit
7.1 - Git Commit
(Creating Commit)
7.2 - Git Log
(See Commit List/History)
7.3 - Git Show
(See Commit Information)
7.4 - Git Ammend
(Renaming Last Commit)
7.5 - Git rebase reword
(Renaming Old Commits)
7.6 - Git bisect
(Markig commits good/bad)
7.7 - Git Merge branch
(Copying Commits)
7.8 - Git Merge commit
(Copying Commits fast forword)
7.9 - Git Merge Rebase
(Copying Commits as Latest)
7.10 - Git reset
(Move/Rollback to old commit)
7.11 - Git revert
(Revert the file changes with new commit)
7.12 - Git rebase drop
(dropping commit from history)
7.13 - Git rebase squash
(Merging commit to it's next commit)
7.14 - Git cherrypick
(copying commit chanes from one branch to another)
8. Github Advanced
8.1 - Github PR (Pull Request)
8.2 - Github Webhooks
8.3 - Github Market Place
8.4 - Git tag & github tag
9. Git Remote
9.1 - Git Pull
9.2 - Git push
9.3 - Git fetch
9.4 - Git fetch vs Git pull
6.3 Git rm
Remove files from Staging area (un staging) / un Tracking :
If you want to remove a file from staging/tracking with any reason
We can simply remove it by using this command
git rm –cached <filename>
By removing a staged files, it will be moved to untracked files list
Prev
Previous
6.2 Git Status
Next
6.4 .gitignore
Next