IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> git (四) work flow -> 正文阅读

[开发工具]git (四) work flow

工作流

个人工作流
团体工作流

1. pull
2. add
// 修改错误
3. pull
// 修改冲突
4. commit
// 修改错误
5. push // 如果push不上去,pull下来,然后merge,再次push
  • 本地仓库和工作区之间
本地仓库->工作区
	修改
工作区 -> 本地仓库
	git restore  file
	git checkout -- file// git checkout  file 会优先切换到file 分支,如果没有file分支,则做 git checkout -- file 

区别
	git diff file
  • 工作区 与 暂存区 之间
工作区 -> 暂存区
	git add file
	git rm file
暂存区 -> 工作区 
	git restore --staged

区别
	git diff --cached
  • 暂存区 与 本地仓库 之间
暂存区 -> 本地仓库
	git commit -m "b"
本地仓库  -> 暂存区
	git reset --soft HEAD^1
  • 本地仓库 与 本地仓库 之间
本地仓库(high commit id)  -> 本地仓库(low commit id)
	git reset --hard HEAD^1 // 回退一次提交 . 注意:会导致 workspace  清空
	git reset --hard commit_id //回退到 commit_id 注意:会导致 workspace  清空
  • local repository 与 remote repository 之间
local repository -> remote repository
	git push origin master // origin 为 仓库的名称,master为本地分支的名称
remote repository ->  local repository
	git pull
	git fetch

库间的关联
	git remote remove origin
	git remote add origin url

在这里插入图片描述

pull 时的冲突

pull 时的冲突
	1. 工作区的冲突(与远程仓库)
	Please move or remove them before you merge. // 需要手动处理
	//move 即可
	2. 暂存区的冲突(与远程仓库)
	Please commit your changes or stash them before you merge. // 需要手动处理
	// stash 或者 commit 即可(不过commit了之后会产生情况3)
	3.1. 本地仓库的冲突(与远程仓库)
		3.1 CONFLICT (add/add): Merge conflict in file_xxx
			Auto-merging file_xxx
			Merge made by the 'recursive' strategy.
			
			弹出一个vim窗口,让你输入 merge 信息.(该窗口中的非#开头的都是merge信息)
			这次vim窗口关闭后,会创建一个提交,这次提交是一次merge

		3.2 CONFLICT (add/add): Merge conflict in file_xxx // 需要手动处理
			Auto-merging file_xxx
			Automatic merge failed; fix conflicts and then commit the result.

			On branch master
			Your branch and 'origin/master' have diverged,
			and have 1 and 2 different commits each, respectively.
			  (use "git pull" to merge the remote branch into yours)

			You have unmerged paths.
			  (fix conflicts and run "git commit")
			  (use "git merge --abort" to abort the merge)

			Unmerged paths:
			  (use "git add <file>..." to mark resolution)
			        both added:      file_xxx

			cat file_xxx // aaa 是本地仓库上的,bbb是远程仓库的
			<<<<<<< HEAD
			aaa
			=======
			bbb
			>>>>>>> f48bced1363868fa834c814e393e492c06fe01b6


			修改掉 <<>> ,然后 git add 和 git commit
  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2022-02-05 21:55:19  更:2022-02-05 21:55:57 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 10:37:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码