一、git 命令名词解释
1、添加/跟踪/暂存:添加到本地索引
git add 文件名
2、提交:提交到本地仓库
git commit -m ‘注释’
3、推送:将提交到本地仓库的所有更新提交到服务器
git push
2017-08-23