get git current branch code example
Example 1: how to get current git branch
git branch --show-current
Example 2: git branch from current branch
git checkout -b <branch-name>
Example 3: how to check current branch in git
git rev-parse --abbrev-ref HEAD
// To check the current branch