b

branching

Create a new local branch and check it out immediately.

Usage: git b feature/new-feature

CLI Command

git config --global alias.b "checkout -b"

.gitconfig Snippet

[alias]
  b = checkout -b