GitHub is now naming the default branch for new repositories "main" instead of "master", while the latter is still the default for the git command-line tool. With git v2.28, you can configure git to set a name other than "master" for the default branch. Of course, once that's done there's still the "little" matter of making the change to all your repos. GitHub says they're going to do this in the background starting in January 2021, and in fact advise against making the change yourself.
For all future repos created locally:
$ git config --global init.defaultBranch main