3
I have a project that we use GIT for versioning. However, one of the programmers uploaded a wrong version to the remote server, gave commit
, push
and several commits
and pushs
.
Then the site gave error. We tried git checkout <commit numero>
, git revert
and nothing!
I want to undo all the changes he made on a certain date to what it was before, and understand how to undo those changes after a user has given a push
on the server.
It is highly inadvisable to delete commits that have already been published. Ideally, reverse them, not delete them.
– dcastro