Git : How to revert bulk commits on multiple repos

Posted by Rachel on Stack Overflow See other posts from Stack Overflow or by Rachel
Published on 2010-04-23T15:10:36Z Indexed on 2010/04/23 15:13 UTC
Read the original article Hit count: 258

Filed under:
|

To update my multiple repos, I did:

git bulk fetch origin
git bulk pull origin master

Now it appears that some of the functionality which was working initially is not working now and so I want to revert back to previous state of my repos.

How can this be done ?

I tried doing git reset --soft commit id & git reset --hard commit id for one repos but it is not working.

Any suggestions.

© Stack Overflow or respective owner

Related posts about git

Related posts about version-control