eolas/DevOps/Git/Rename_a_branch.md
2022-12-09 08:30:05 +00:00

19 lines
203 B
Markdown

---
categories:
- DevOps
tags: [git]
---
# Rename a branch
### In local development
```bash
git branch -m <old_name> <new_name>
```
### Update the remote
```bash
git push origin -u <new_name>
```