https://github.com/vanheemstrasystems/git-create-new-feature-branch
Git - Create New Feature Branch
https://github.com/vanheemstrasystems/git-create-new-feature-branch
Last synced: 5 months ago
JSON representation
Git - Create New Feature Branch
- Host: GitHub
- URL: https://github.com/vanheemstrasystems/git-create-new-feature-branch
- Owner: vanHeemstraSystems
- Created: 2023-07-19T09:02:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T09:08:58.000Z (almost 3 years ago)
- Last Synced: 2025-03-25T14:17:17.445Z (over 1 year ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
git-create-new-feature-branch
# Git - Create New Feature Branch
Based on "Feature Branch: A Quick Walk Through Git Workflow" at https://blog.mergify.com/feature-branch-a-quick-walk-through-git-workflow/
How to Create a Feature Branch in Git?
```
git checkout main
git pull
git checkout -b new-feature
git add
git commit
git push -u origin new-feature
```
**Note**: A recommended naming for feature branches is:
```
feat/my-new-feature-short-name
```