环境:安装Git https://git-scm.com/download/win
设置缓存:git config http.postBuffer 524288000
1.注册账号
2.创建项目(名称与你的项目文件名相同)
3.提交
git config --global user.name "用户名"
git config --global user.email "邮箱"
cd 项目路径
git init
git remote add origin http://git.greathiit.com/用户名/自己创建的项目名.git //地址为上图第二行
这里如果报错,请先执行 git remote rm origin
git add . 或者 git add *
git commit -m "描述"
git push -u origin master