Skip to content

Git Clean

Roger Xu edited this page Mar 25, 2016 · 2 revisions

git-diff

Remove untracked files from the working tree

git clean -f -d
  • -d - Remove untracked directories in addition to untracked files.
  • -f - equal to --force
Clone this wiki locally