i made a commit and pusheed it, how to undo this particular commit from bitbucket parmanently; so no team member can use it.

Harsh Mathur September 21, 2015
 

3 answers

16 votes
Tim Crall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 21, 2015

If your remote (BitBucket) allows force-pushing, you can do this:

git reset --hard <last_good_commit_ID>
git push -f

You should NOT do that if anyone has pulled down the bad commit, as it will screw up their ability to push back to the repo.  Also don't do this if there are any good commits after the bad commit that you don't want to lose.

 

Otherwise,

git revert <bad_commit_ID>
git push

will push a commit that reverses the changes made by the bad commit, but it won't remove the bad commit from the repo.  This is better if other people have pulled down the bad commit because they will also pull down the commit that reverts it, but this may not accomplish your goal if you want to delete it from the remote repo as if it was never there.

 

mauro_pappaterra_gmail_com September 15, 2018

Thanks a LOT!

Afif Fahmi April 17, 2019

Thanks. This is exactly what I need.

ikosmik June 19, 2019

Is there terminal in bit bucket ?

Seth
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 20, 2019

@ikosmik No, you need to use your local terminal and force push to bitbucket.

Like Megan Li likes this
1 vote
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 21, 2015

Try git revert or reset, depending on what you need.

0 votes
Seth
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 21, 2015

Using normal techniques, you can't. There are surely some advanced commands that might allow you to delete the commit from the repo, but they aren't specific to Bitbucket, so you should probably take your question to a larger Q&A site (stackoverflow, for example) and phrase it as "git" or "mercurial", rather than "bitbucket".

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events