文章目录
- [一 、git 有三个分区](#一 、git 有三个分区)
- [二、git 基本操作](#二、git 基本操作)
-
- [1、克隆---git clone](#1、克隆—git clone)
- [2、拉取---git fetch / git pull](#2、拉取—git fetch / git pull)
- [3、查看---git status / git diff](#3、查看—git status / git diff)
- [3.1 多人开发代码暂存技巧 本地代码](#3.1 多人开发代码暂存技巧 本地代码)
- [4、提交---git add / git commit / git push](#4、提交—git add / git commit / git push)
- [5、日志---git log / git reflog](#5、日志—git log / git reflog)
- [6、删除---git rm 'name'](#6、删除—git rm ‘name’)
- [7、撤销恢复---git checkout / git reset / git revert](#7、撤销恢复—git checkout / git reset / git revert)
- [三、git 分支管理](#三、git 分支管理)
-
- [1、查看分支---git branch](#1、查看分支—git branch)
- [2、创建分支---git branch 分支名](#2、创建分支—git branch 分支名)
- [3、切换分支---git checkout 分支名](#3、切换分支—git checkout 分支名)
- [4、删除分支---git branch -D 分支名](#4、删除分支—git branch -D 分支名)
- [5、合并分支---git merge 分支名](#5、合并分支—git merge 分支名)
- 6、比较本地分支和远程分支的差别
关注微信公众号【前端成长营】持续更新...
微信扫码体验一下 (说不定哪天你就用得上)
一 、git 有三个分区
工作区 :就是你在电脑里能看到的目录(代码编辑区)。
暂存区 :一般存放在 ".git目录下" 下的index文件中(过渡层,避免误操作)。
版本库:工作区有一个隐藏目录.git (本地仓库,专门控制版本)。
二、git 基本操作
1、克隆---git clone
2、拉取---git fetch / git pull
3、查看---git status / git diff
3.1 多人开发代码暂存技巧 本地代码
git stash save -m '...'
git pull
git stash apply stash{0} //恢复本地暂存代码 ---
git stash list 查看需要恢复的暂存代码标志
解决冲突:对有冲突的文件进行修改
git add .
git commit -m ' '
git push
拓展git stash drop <名称>:从堆栈中移除某个指定的 stash
git stash clear:清除堆栈中的所有 内容。
git stash show:查看堆栈中最新保存的 stash 和当前目录的差异。
4、提交---git add / git commit / git push
5、日志---git log / git reflog
6、删除---git rm 'name'
7、撤销恢复---git checkout / git reset / git revert
三、git 分支管理
1、查看分支---git branch
2、创建分支---git branch 分支名
3、切换分支---git checkout 分支名
4、删除分支---git branch -D 分支名
5、合并分支---git merge 分支名
6、比较本地分支和远程分支的差别
git diff 本地分支名 origin/远程分支名