git常用
一般流程
git status 查看项目状态
git checkout -b login 新建login分支
git branch 查看分支
git add . 添加所有文件
git commit -m “说明内容”
2022-04-22