1.进入文件夹,cd f:/test/
2.初始化远程仓库,git init
3.添加代码,git add . (注意add后面的点前面有一个空格)
4.提交代码到远程仓库,git commit -m "first commit" (这不操作不可少)
5.关联远程仓库,git remote add origin url (好像只需要关联一次,url为远程仓库地址)
6.把本地库的所有内容推送到远程库上,git push -u origin maste
刷新远程仓库,代码应该已经上传成功了!