-3

I want to change/delete the second author name , I have the following in bitbucket:

enter image description here

, how do I

  1. changing the name of this branch (I think it's a branch called tmp)

  2. deleting this specific brach (but keep the other code)

I need one of this two, the easiest between them, thanks.

I only want to delete my name from this project

Devy
  • 703
  • 6
  • 17

1 Answers1

1

Once you have followed my previous answer, you did not need that tmp branch anymore.

That was a local marker in order to be able to cherry-pick those commits, before amending them in the master branch.

You can now delete the tmp branch locally and remotely (if you have pushed tmp):

git push --delete origin tmp
git branch -d tmp

If you have not pushed tmp, the first command will fail: you can ignore that.

You won't see tmp anymore.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250