GIT基础命令(粘贴 shift + insert)
更新仓库
1、git status
2、git add .
3、git commit -m 'xxxx备注'
4、git push
若出现
Please tell me who you are.
则
进行1、git config --global user.name "xxxx"
2、git config --global user.email "xxxx@gmail.com"
在进行 git push