git 基本命令
git init 初始化仓库
git add <filename> 加入暂存区
git add . 将所有文件加入暂存区
git commit -m <messeage> 提交文件到本地仓库
2022-02-24