I want to rename my git branch name from b1 to c1 (for example)
note: I don't want to create a copy from old branch
Can you help me?
I want to rename my git branch name from b1 to c1 (for example)
note: I don't want to create a copy from old branch
Can you help me?
Use from this code in your terminal:
git branch -m old_name new_name
by example:
git branch -m b1 c1