Answers for "git untrac file current branch"

15

git remove untracked files

git clean -fdx
Posted by: Guest on March-18-2020
2

how to delete unstaged files that were recently added locally

To see what files will be removed:
git clean -n <optional file_name/dir>

To actually delete those files:
git clean -f <optional file_name/dir>
Posted by: Guest on July-26-2020

Code answers related to "git untrac file current branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language