GIT基础命令(粘贴 shift + insert) 拷备项目:git clone <仓库地址> 创建分支:git branch 创建并进入分支:git checkout –b 查看状态:git status 添加所有文件:git add . 提交:git commit –m ‘这里是当前提交的描述’ 拉取:git pull 推送:git push 查看分支:git branch --list 查看分支(包含远程分支):git branch -a