1.点击右上角那个+,点击new repository,进入Create a new repository。
2.Repository name 输入仓库名称。
3.Description 描述仓库(可不填)。
4.权限设置成public,其余不填,点击Create repositor。
5.进入到你的项目里面执行下面的命令
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/gogocomeon/testproject.git
git push -u origin main
好了 在https://github.com/gogocomeon/testproject 远程仓库应该看到readme文件了
下面上传你的项目
git add .
git commint -m "add files"
git push
大功告成!