Hi On Tue, Dec 1, 2009 at 5:25 PM, Mikko Oksalahti <mikko@xxxxxxxx> wrote: > How do I now get the accidentally deleted files back from the repository without > losing local changes made to 10 files? > > I've tried using: "git checkout HEAD ." but my local changes after last commit > will be lost. > > I've tried using: "git pull ." but the deleted files are not restored. > > So I'm looking for an "svn update" equivalent command that would semantically do > this: "Get the latest version of all files from the repository and merge them > with any local changes I've made to files." Are you looking for a command that "Restore deleted files, without reverting local changes", or "Get the latest version of all files from the repository and merge them with any local changes I've made to files."? I would suggest adding the changed files, then doing a checkout. git add changed.file1 git add changed.file2 git add -p #alternatively, select hunks/changes to add interactively git checkout HEAD #although using . (current directory) should give the same result Note that your changes have only been added to the index, and you need to commit them. The index/stage is a concept not in svn. See the user manual for more on this. I also suspect you are still thinking in svn mode when you said getting the latest version from the repository. You already have a repository locally. It is more an issue of syncing your local repository with the one that you're following. Unlike svn, every time you commit, your local repository is updated, not the remote one, and vice-versa. -- Cheers, Ray Chuan -- 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