Is there a git command to Revert All Uncommitted Changes in Working Tree and Index and to remove also New Files and Folders ?

link|improve this question

feedback

3 Answers

up vote 15 down vote accepted

You can run these two commands:

# Revert changes to modified files.
git reset --hard

# Remove all untracked files and directories.
git clean -fd
link|improve this answer
feedback

I think you can use git reset --hard

link|improve this answer
hhmm... I did that but my files are still there. Should I do something after ? – MEM Apr 27 '11 at 16:22
1  
git reset only reverts the uncommited changes in the working tree. It will not remove the new files and folders. I am not sure how to do that with git – josnidhin Apr 27 '11 at 16:38
So, if we change a system directory by adding new files and folders, and then we want to revert that directory to a previous state (w/out those files and folders), we cannot do that with git ? So the best we can is to revert file states ? But once we create a file, we can't remove that file unless we do it manually ? – MEM Apr 27 '11 at 17:37
feedback

Perhaps I am misunderstanding something, but if you want to totally reset, just do a new checkout. Remove your existing project directory and git clone the project again.

link|improve this answer
I was hoping for something more in the flow. We have a project folder called FOLDER_P, then while we developing, we normally add remove and change files. When I revert to some point on my project, I don't want to see files that I have added after that turning back point. Can't this be done? – MEM Apr 27 '11 at 17:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.