I\'m a recent git convert. It\'s great to be able to use git-svn to keep my branches locally without disturbing the svn server. There was a bug that existed in the latest versio
This seems to do what I wanted, which is what I think you're asking for too
git checkout *
Update 2019: the proper command would be
git restore -s @~1
(to, for instance, restore files at their state in HEAD parent commit)
That is because:
git checkout HEAD~ -- .
@
as a shortcut notation for HEAD
.If you are using TortoiseGit then
Right Click in project folder > TortoiseGit > Pull
And getting back to latest (equivalent to: svn up), you'll need to update the branch, usually:
git checkout master
This is because the HEAD refers to the version that is being checked out.
There is no exact equivalent of svn update in git. If you delete a file, it will show as deleted status even if you pull it again. Only option is to checkout that file. If you have deleted multiple files by mistake and want to bring back them, You could rename that repo and clone it once again. This is what i do.
git pull
seems a more appropriate command for what you are looking for