1、进入需要上传的本地文件夹,选择“Git Bash Here”,打开git客户端;
2、把文件添加到版本库中,使用命令 “ git add . ”添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件;
git add .
//如果提示:fatal: not a git repository (or any of the parent directories): .git
git init
3、用命令 “ git commit ”,把文件提交到仓库;
git commit -m '初次提交'
4、新建或者复制远程的github地址,将本地的文件关联到仓库;
git remote add origin https://…….git
5、如果远程库不为空,则需要获取远程库与本地同步合并,为空则不需要此步骤;
git pull --rebase origin master
6、使用 git push 命令把本地库的内容推送到远程。执行此命令会要求输入用户名、密码,验证通过后即开始上传。
git push -u origin master
7、到远程git验证文件是否上传成功。