After creating a new repository, one of the instructions for uploading a local repository is:
git push -u origin main
This is incorrect; calling the default "main" instead of "master" is from Github and some of its earlier weirdness. It should be:
git push -u origin master
as is the Git standard.
Tiny thing. Otherwise it works great.
### Comment
After creating a new repository, one of the instructions for uploading a local repository is:
`git push -u origin main`
This is incorrect; calling the default "main" instead of "master" is from Github and some of its earlier weirdness. It should be:
`git push -u origin master`
as is the Git standard.
Tiny thing. Otherwise it works great.