Delete branches by patterns in Git
- 2019-11-6
- Git
1 | # delete all branches that startswith bump. |
We can also use git fetch
to copy a remote branch to local:
1 | git fetch origin move-host-logic:move-host-logic |
Reference: Deleting Multiple Branches in Git