Pridal: Pred 5 rokmi
Here are the steps to rename the branch:

1. switch to branch which needs to be renamed
2. git branch -m <new_name>
3. git push origin :<old_name>
4. git push origin <new_name>:refs/heads/<new_name>
5. git status
6. git branch --unset-upstream
Top