691 B
691 B
description, author, author-url, version
| description | author | author-url | version |
|---|---|---|---|
| Updates branch names with proper prefixes and formats, enforcing naming conventions, supporting semantic prefixes, and managing remote branch updates. | giselles-ai | https://github.com/giselles-ai | 1.0.0 |
Update Branch Name
Follow these steps to update the current branch name:
- Check differences between current branch and main branch HEAD using
git diff main...HEAD - Analyze the changed files to understand what work is being done
- Determine an appropriate descriptive branch name based on the changes
- Update the current branch name using
git branch -m [new-branch-name] - Verify the branch name was updated with
git branch