In order to remove untracked files in Git make use of the git clean command with -i option for interactive mode.
Example:% git clean -i -f
Would remove the following item:
HelloWorld.java
.temp
index.html
*** Commands ***
1: clean
2: filter by pattern
3: select by numbers
4: ask each
5: quit
6: help
What now> 1
Removing HelloWorld.java
Removing .temp
Removing index.html
Some Options:
-i (--interactive) --> Interactive Mode
-f (--force) --> Force
-d --> Include directories
-n (--dry-run) --> dry run
-q (--quiet) only report if errors
You can download this article in various formats for your convenience. Choose from the options below:
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:
- Windows 365: Restore Deleted Distribution Group using Admin Center (Active Directory) - Windows
- Install Oh My Zsh on Ubuntu Docker complete steps - Ubuntu
- Fix: error: invalid command bdist_wheel - Python - Python
- Android Studio : Build Tools 23.0.0 rc1 is deprecated - Android-Studio
- What does chmod +x filename command do? - Linux
- Notepad++ Reload - This file has been modified by another program. Do you want to reload it? - NotepadPlusPlus
- Java 8: Get First and Last Date of the Week for Given Date - Java
- How to enable, create and use Virtual Breakout Rooms in Microsoft Teams - Teams