I did git clone git://foo.git cd foo ...edit files..

now I want to start fresh. I don't care about any changes I already made, but I don't want to clone the whole giant foo.git again, just lose all my changes. how can i git clone git://foo.git a second time, without getting fatal: destination path 'foo' already exists and is not an empty directory. what is the proper command?

link|improve this question
feedback

5 Answers

git checkout . # revert your changes
git clean -xdf # delete untracked and ignored files
link|improve this answer
1  
Nice ~! I didn't know about clean! – Sinan Taifour Aug 8 '09 at 10:50
4  
Note: git checkout . obviously will not work if you are not in the top of your repo. git reset --hard will work universally. – Jefromi Aug 8 '09 at 19:23
feedback

You can use "git checkout ." or "git checkout HEAD -- .", or even "git reset --hard HEAD" to reset your working area to known state (to state recorded in index in first case, to state recorded in HEAD commit in second and third case).

To delete untracked files you don't want to keep you can use "git clean" (see documentation for details).

To get new changes from remote repository you cloned from, use "git fetch" (or equivalent "git remote update", after some setup), or "git pull" (to fetch and merge changes).

link|improve this answer
feedback

To revert all your changes, use:

git checkout .

Untracked files (files that didn't originally exist in the tree, ones you created and not edited) will not be removed, though. To find the untracked files, use:

git status

Then delete them manually.

By the way, if you'd like to make a copy of the repo, you don't need to clone the original repo, you can simply clone the one you already have on your hard disk. Go somewhere outside foo, and do:

git clone /path/to/foo
link|improve this answer
feedback

If you really screw it up:

git clean -df
git reset --hard HEAD
link|improve this answer
feedback

You can also always use

rm -rf *
git checkout master

Less commands to remember :)

link|improve this answer
That doesn't work if master already contains local commits since they will still be there. – Tomas Markauskas Feb 8 '10 at 14:14
feedback

Your Answer

 
or
required, but never shown