On Fri, Feb 19, 2010 at 3:20 PM, Mike Fleetwood <mike.fleetwood@xxxxxxxxxxxxxx> wrote: > I am a newbie using git and I am testing conversion of a personal > project into git using fast-import. When fast-import completes > all the files are in the repository but the working tree is empty > and status reports all files are delete but uncommitted. I have > to use reset --hard HEAD to unwind the pending removal of all of > the files. Example below. > > Is this normal or have I missed something? Completely normal. fast-import is a lower level command which only works on the object directory. Frontend tools which automate the conversion are supposed to checkout the working tree files after the import is complete. Or, run like you did, `git reset --hard HEAD`. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html