在此记录下Git的常用操作命令 添加文件到缓冲区 git add . 提交 git commit -m '提交说明' 查看当前分支 git branch 切换分支 git checkout dev 分支合并 git merge master 提交 git push origin main 添加远程仓库 git remote add origin https://github.com/Hellathor 检查当前文件状态 git status