Github is prefers all the with "main" branch name. Please change this as it creates many problems if we forget to change in a new project
Activity
krreet commentedon May 20, 2022
You might want to make the same change to your own Git installation. It's quite simple. Just a matter of issuing the following Git command:
git config --global init.defaultBranch main
.or you may want to select it during setup
FYI There is nothing is the create-react-app to select master branch as the default.
ThePiyushAggarwal commentedon May 21, 2022
It worked. Thank you!