常用指令
# 获取远程仓库
git pull origin master
# 创建当前项目的修改(delete或者add)
git add .
# 添加submit注释
git commit -m "添加你的注释,一般是一些更改信息"
# 同步变更到远程项目
git push origin master
或者
git add .
git commit -m "xxx"
git push
注意要点
- github 用git bash上传项目 最后提示 Everything up-to-date 但没传上去
- 在git commit之前,需要先执行git add .