eolas/zk/Rename_a_branch.md

15 lines
173 B
Markdown

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