Sentry Answers>Git>

Remove untracked files from the working tree in Git

Remove untracked files from the working tree in Git

David Y.

The ProblemJump To Solution

How can I remove untracked local files from my Git repository’s working tree?

The Solution

We can accomplish this with git clean. As this is a destructive operation, we should do a dry run first:

Click to Copy
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:

Click to Copy
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.

  • ResourcesWhat is Distributed Tracing
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty Treats for Web Developers brought to you by Sentry. Web development tips and tricks hosted by Wes Bos and Scott Tolinski

    Listen to Syntax

Loved by over 4 million developers and more than 90,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.

© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.