An open API service indexing awesome lists of open source software.

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

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
```