Hi Team,
If you want to remove all local changes - including files that are untracked by git - from your working copy, simply stash them:
$ git stash push --include-untracked
If you don't need them anymore, you now can drop that stash.
$ git stash drop