If you have added files to the stage area using the git add command but you want to remove or upstage them, you can simply make use of the git restore command,
Intrestingly if you run the git status command and you have some files in the staging area, the command itself shows hints on how to restore files,
% git status
On branch main
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: Sample.java
Untracked files:
(use "git add <file>..." to include in what will be committed)
Main.java
So, to unstage the file Sample.java execute the below git command,
% git restore --staged Sample.java

How to unstage all files?
Just add a . to restore all files that are staged,
% git restore --staged .
❗️Note: If you have a staged file and have made modifications to that file and you restore it, the local changes will be discarded i.e. lost, so be careful (unless you are using an IDE that maintains a history of a file like - Eclipse, VS Core or IntelliJ
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Git,
- Change the default git branch name from master to main
- [Fixed] Git Clone git@github.com: Permission denied (publickey) Could not read from remote repository Fatal error
- [Solution] fatal: not a git repository (or any of the parent directories): .git
- [fix] zsh: command not found: git
- How to Install Git on Windows
- Setup Git + Visual Studio Code Tutorial
- How to undo last Git Commit on Local Repository?
- Install GitHub Command Line Tool on Mac
- How to Create a Git Branch in 6 Different ways
- Fix Git: Warning: could not find UI helper GitHub.UI on Windows
- Git Config Command - A Deep Dive
- Step-by-Step: How to delete a git branch from local as well as remote origin
- How to Add Git Bash Option to Windows Terminal List
- Command to Clone Repository Using Git Bash
- How to remove or unstage a file from git staged area
- Get the file location of git config values
- GitHub: How to Search Code
- How to check your installed version of Git
- Fix: error: src refspec master does not match any failed to push some refs to Git
- Git: Step-by-Step - How to Push Local Brach to GitHub
- How to Merge Branch into Master Branch
- fix fatal: --local can only be used inside a git repository error
- Fix: Git Pull Error: unable to resolve reference refs/remotes/origin/master: reference broken
- Change the default diff or commit editor for git
- Git Fix: fatal: refusing to merge unrelated histories Error
More Posts:
- Get the file location of git config values - Git
- Android Lint app_name is not translated in af (Afrikaans) am (Amharic) ar (Arabic) bg (Bulgarian) - Android
- Check Reboot History Mac - MacOS
- [Fix] Microsoft Windows OneDrive 0x8007018b Error Code - Windows
- Jupyter Notebook Markup Cell Table Example - Python
- Command to check Last Login or Reboot History of Users and TTYs - Linux
- Exception in thread main java.nio.file.NoSuchFileException - Java
- Open PowerShell Terminal in Visual Studio Code (VSCode) - Powershell