Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Git恢复Force Push内容
Search
Mark24
July 29, 2019
Programming
0
53
Git恢复Force Push内容
git高级技巧,恢复force push的内容
Mark24
July 29, 2019
Tweet
Share
More Decks by Mark24
See All by Mark24
DSL分享
mark24code
0
110
Rails初探
mark24code
0
37
Anti Hook
mark24code
0
64
Other Decks in Programming
See All in Programming
requirements with math
moony
0
510
SLI/SLOの設定を進めるその前に アラート品質の改善に取り組んだ話
tanden
2
650
Identifying and Analyzing Fake OSS with Malware - fukuoka.go#21
rhykw
0
520
なぜselectはselectではないのか
taiyow
2
280
CQRS+ES勉強会#1
rechellatek
0
380
ベクトル検索システムの気持ち
monochromegane
28
8.1k
Windows版PHPのビルド手順とPHP 8.4における変更点
matsuo_atsushi
0
360
Functional APIから再考するLangGraphを使う理由
os1ma
4
640
SideKiqでジョブが二重起動した事象を深堀りしました
t_hatachi
0
180
読もう! Android build ドキュメント
andpad
1
200
AI Agentを利用したAndroid開発について
yuchan2215
0
200
AtCoder Heuristic First-step Vol.1 講義スライド
terryu16
2
960
Featured
See All Featured
[RailsConf 2023] Rails as a piece of cake
palkan
53
5.4k
Code Review Best Practice
trishagee
67
18k
We Have a Design System, Now What?
morganepeng
51
7.5k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
30
1.1k
Reflections from 52 weeks, 52 projects
jeffersonlam
349
20k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7.2k
A Philosophy of Restraint
colly
203
16k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
2.1k
Producing Creativity
orderedlist
PRO
344
40k
Building an army of robots
kneath
304
45k
Rebuilding a faster, lazier Slack
samanthasiow
80
8.9k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
366
25k
Transcript
Git 远程恢复被force-push的队友的commit 2019.07.29 @mark
情景⼀一
情景⼀一:彼此没有沟通,A、B各⾃自依次force push的了了代码。 远程仓库显示了了最后的B的提交。 请问如何,恢复A的部分commit? 开发A 开发B 远程仓库 19:00 pm force
push 19:50 pm force push
⽅方法⼀一 ⽤用户A解决
经过沟通,开发者A可以cherry-pick或者rebase,把⾃自⼰己的本地 提交,和远程分⽀支,进⾏行行处理理,再进⾏行行后续的追加提交。
⽅方法⼆二 中央仓库解决
远程机器器,git reflog ,使⽤用cherry-pick恢复。 实际上这个不不合理理。中⼼心节点,不不应该操作。 其实我不不太清楚,中央节点,有没有reflog,应该是有的 中央仓库解决
⽅方法三 ⽤用户B解决
1.本地reflog仅仅是⾃自⼰己的——⽆无法下载到远程的reflog。这条 路路不不通。 2.⽆无法QQ远程共享屏幕帮A操作,假设A还离职了了,还删除了了 远程仓库(Hard模式) B在本地⽆无记录的情况下如何恢复A的部分节点? B的Hard模式
Git-apply Git-am
1.中央仓库是有记录的。 2.查看想要找回的commit 3.下载patches⽂文件 4.本地使⽤用 git apply 针对单个⽂文件 5.本地使⽤用 git am
针对单⽂文件、⽬目录(批量量⽂文件) 6.区别am会⽣生成commit节点。这个就是我们想要的
问题解决 The End