# 局部配置 [在项目下面]
git config user.name "远程仓库用户名(如:github用户名)"
git config user.email "远程仓库绑定邮箱"
# 全局配置
git config --global user.name "远程仓库用户名(如:github用户名)"
git config --global user.email "远程仓库绑定邮箱"
git init
git add .
git commit -m "first commit"
git remote add origin 你的远程库地址
git push -u origin master