Closed SebastJava closed 2 years ago
Done using those simple 4 steps: https://linuxize.com/post/how-to-rename-local-and-remote-git-branch/
Follow the steps below to rename a Local and Remote Git Branch:
git checkout <old_name>
git branch -m <new_name>
At this point, you have renamed the local branch.
If you’ve already pushed the
git push origin -u <new_name>
git push origin --delete <old_name>
That’s it. You have successfully renamed the local and remote Git branch.
Many branches were created for many pull requests on https://github.com/linuxmint/mint-themes/pulls These are still waiting. They should be renamed with a common prefix such as "PR" in order to get those branches grouped and classified.