两种方式上传文件到github上的repository:
$git clone https://github.com/xxx/test.git
$cd test
$touch a
$git add .
$git commit -m "first commit"
$git push
1. 在github上新建一个repository。
2. 启动gitbash,切换到项目所在目录,执行
#git init
#git add .
#git commit
#git remote //查看现有remote origin
#git remote rm origin //如果有绑定远程git hub 上repository,并且不是自己期望的删除
#git remote add origin https://github.com/xxx/yyy.git
#git push -f origin main //使用-f参数,如果远程repository非空, main远程repository是分支的名字。2020年10月份之后,github将缺省主分支名字从master改成main