设置用户信息
git config --global user.name "你的名称"
git config --global user.email "你的邮箱"
暂存
git add "文件/文件夹"
提交
git commit -m "描述"
推送
git push
拉取
git pull
相关推荐