Create Branch By Command Github
Command - Create a branch
$git checkout -b "Name"
$git add .
$git commit -m"Messag3"
$git push origin BranchName
Explaining Above commands
Checkout -b will create a branch then add all the files and commit a message then you can push it to a br...
laiba.hashnode.dev1 min read