命令
提交
添加远程仓库
git remote add origin https://...
添加所需上传的文件
git add FileName
提交并添加信息
git commit -m "Information of your File"
推送
git push
然后会提示你输入用户名和密码
其他
全局设定
用户名
git config --global user.name "Your username"
git config --global user.email "example@123.xxx"