配置邮箱和用户名称
git config --global user.name "你的名字或工号或昵称"(注意双引号是英文格式)
git config --global user.email "你的邮箱"
下载项目
git clone github项目连接
上传改动的项目
git add .
git commit -m "update"
git push
配置邮箱和用户名称
git config --global user.name "你的名字或工号或昵称"(注意双引号是英文格式)
git config --global user.email "你的邮箱"
下载项目
git clone github项目连接
上传改动的项目
git add .
git commit -m "update"
git push