git create a branch of of the current branch code example
Example 1: git who created branch
git for-each-ref --format='%(color:cyan)%(authordate:format:%m/%d/%Y %I:%M %p) %(align:25,left)%(color:yellow)%(authorname)%(end) %(color:reset)%(refname:strip=3)' --sort=authordate refs/remotes
Example 2: git create new branch from current
git checkout -b topic/newbranch
Example 3: how to create a branch in git
$ git branch [name of branch]