创建空仓库 -> git init
添加到暂存区 git -> add 文件名
添加到版本库 git commit -m -> "提交信息"
查看各个区的情况 -> git status
查看版本记录 -> git log
拉取远端代码 -> git pull
推送远端代码 -> git push