Your branch is `feat-stuff`. Team convention is `feature/<ticket>-description`. You already pushed.
Rename locally, delete the old remote branch, push the new name.
Easy · 3 steps · +350 XP
This scenario walks through 3 steps, in order:
Try the terminal first — you learn more by doing. When you want to check yourself, here is the command for each step.
git branch -m feature/ABC-123-stuffgit push origin --delete feat-stuffgit push -u origin feature/ABC-123-stuffThree steps: local rename, delete old remote, push new with -u.