1
Has GitHub reverted its default branch nomenclature back to “master”?
I just realised when creating a new repo that the default prompt mentions master instead of main. Good on them, I'm glad common sense prevailed on this non-issue. Is this the case everywhere?
Current new repo text:
..or create a new repository on the command line
echo "# repo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/your/repo.git
git push -u origin master