Reputation: 85
In this image
you can see list of commit
, I want to delete
one of them, but I could not find the delete
option.
Upvotes: 5
Views: 9539
Reputation: 2473
To revert(the right nomenclature) a commit directly on Gitlab it all you need to do is:
Note that similar to reverting a Merge Request, you can opt to revert the changes directly into the target branch or create a new Merge Request to revert the changes.
You can follow the official documentation for more details: https://docs.gitlab.com/ee/user/project/merge_requests/revert_changes.html#reverting-a-commit
Upvotes: 1