1、提交代码【6步骤】
git stash // 把文件放到缓存中
git pull // 更新当前分支代码
git stash apply 或者 git stash pop // 把放到缓存中的文件加放出来
git add . // 提交修改的代码
git commit -m '文字描述'
git push origin 项目分支 // 提交代码到项目分支
2、查看当前邮箱、账号名
git config user.name // 查看文件提交显示的:用户名
git config user.email // 查看文件提交显示的:邮箱
3、常用命令
(0)回退代码
撤回commit 操作:git reset --soft HEAD^
回退版本:git reset HEAD~
回退指定版本:git reset --hard id
修改 commit 描述:git reset --amend
git config --gobal --list
(1)克隆
git clone 项目名称 // 克隆项目地址
(2)切换分支
git checkout 项目分支 // 切换到项目分支
git fetch origin (拉取更新远程分支)
git branch (分支)
git branch -r (查看远程分支)
git branch -a (查看本地分支)
(3)查看日志
git log // 查看最近一次的提交记录
(4)删除本地以及远程的分支
git branch -r // 查看远程分支
git branch -a // 查看本地分支
git branch -D 分支名称 // 删除本地分支
git push origin --delete 分支名称 // 删除远程分支
(5)新建立分支
git checkout -b 分支 (创建一个分支并且停留在当前分支上)
4、正常命令提交流程
git stash (修改的文件放到缓存中)
git pull (拉取远程代码)
git stash pop (把放在缓存中的文件放出来)
git add . (添加要提交的文件)
git commit -m '' (提交的文字描述)
git push orign 分支号 (提交到某个分支)
5、合并代码(vscode操作)
操作完成边后在命令中:git push origin 当前分支号