David Y.
—How can I remove untracked local files from my Git repository’s working tree?
We can accomplish this with git clean
. As this is a destructive operation, we should do a dry run first:
git clean -n
The -n
flag will print the names of the files and directories to be removed without actually deleting them. If we’re happy with the output of this command, we can run it again with the -f
flag in place of -n
:
git clean -f
To remove untracked directories as well as untracked files, we can add the -d
flag.
To remove untracked files as well as ignored files (i.e. files matched by rules in .gitignore
), we can add -x
. To remove only ignored files, we can use -X
.
Tasty treats for web developers brought to you by Sentry. Get tips and tricks from Wes Bos and Scott Tolinski.
SEE EPISODESConsidered “not bad” by 4 million developers and more than 100,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.