Our Project is using CVS and its is integrated from eclipse and so we use Team Synchronizing to get the latest code from CVS but is there a way to revert the previous commit or update from repositry which we have done ?
I come from git background and so I am having hard time to find out this functionality from eclipse/cvs, any suggestion would be highly apprecaited.
It depends what you mean by “revert”.
The
git revertactually add a new commit canceling the changes introduced by the previous one.With Eclipse, that would be (file by file): “
Replace With -> History“(see “How to properly roll back to an older version in CVS HEAD using Eclipse?“)
And then make a new commit.
In other word, there don’t seem to be any simple way to do this (when many files are impacted)…