Git误操作急救手册大纲

Git误操作急救手册大纲

常见误操作场景分类
  1. 提交相关误操作

    • 提交了错误的文件或内容
    • 提交信息写错
    • 漏提交文件
  2. 分支相关误操作

    • 误删分支
    • 错误合并或重置分支
  3. 远程仓库误操作

    • 强制推送覆盖远程提交
    • 误删远程分支或标签
急救方法与命令

撤销未推送的提交

使用 git reset 回退到指定提交:

复制代码
git reset --soft HEAD~1  # 保留更改,仅撤销提交  
git reset --hard HEAD~1  # 彻底丢弃更改  

修复提交信息

通过 git commit --amend 修改最后一次提交信息:

复制代码
git commit --amend -m "新的提交信息"  

恢复误删的分支

通过 git reflog 查找分支历史并恢复:

复制代码
git reflog  # 找到误删分支的最后一次提交哈希  
git branch <分支名> <提交哈希>  

撤销错误的合并或重置

使用 git reflog 定位操作前的提交并重置:

复制代码
git reset --hard <提交哈希>  

恢复强制推送覆盖的远程提交

若本地仍有历史记录,可强制推送旧提交:

复制代码
git push origin <分支名> --force  
预防措施与最佳实践
  • 频繁提交并推送,避免累积大量更改后操作。
  • 重要分支设置保护,禁止强制推送。
  • 使用 git stash 临时保存未完成的更改。
  • 操作前通过 git statusgit diff 确认状态。
高级工具与技巧
  • git fsck 检查仓库完整性并恢复悬空对象。
  • 利用 git cherry-pick 选择性恢复特定提交。
  • 第三方工具(如 gitk 或可视化客户端)辅助排查问题。
总结与资源推荐
  • 官方文档与社区论坛(如 Stack Overflow)的常见问题解答。
  • 定期备份 .git 目录或整个仓库。

https://gitee.com/aimenfeifei/collections/789588

https://gitee.com/aimenfeifei/collections/789588

https://gitee.com/luojingsds/collections/789587

https://gitee.com/aimenfeifei/collections/789583

https://gitee.com/luojingsds/collections/789584

https://gitee.com/luojingsds/collections/789584

https://gitee.com/aimenfeifei/collections/789583

https://gitee.com/luojingsds/collections/789579

https://gitee.com/aimenfeifei/collections/789580

https://gitee.com/aimenfeifei/collections/789580

https://gitee.com/luojingsds/collections/789579

https://gitee.com/aimenfeifei/collections/789576

https://gitee.com/luojingsds/collections/789575

https://gitee.com/aimenfeifei/collections/789576

https://gitee.com/luojingsds/collections/789575

https://gitee.com/aimenfeifei/collections/789572

https://gitee.com/luojingsds/collections/789571

https://gitee.com/aimenfeifei/collections/789572

https://gitee.com/luojingsds/collections/789571

https://gitee.com/aimenfeifei/collections/789567

https://gitee.com/luojingsds/collections/789568

https://gitee.com/aimenfeifei/collections/789567

https://gitee.com/luojingsds/collections/789568

https://gitee.com/luojingsds/collections/789562

https://gitee.com/aimenfeifei/collections/789563

https://gitee.com/luojingsds/collections/789562

https://gitee.com/aimenfeifei/collections/789563

https://gitee.com/luojingsds/collections/789562

https://gitee.com/aimenfeifei/collections/789559

https://gitee.com/luojingsds/collections/789558

https://gitee.com/aimenfeifei/collections/789559

https://gitee.com/luojingsds/collections/789558

https://gitee.com/aimenfeifei/collections/789555

https://gitee.com/luojingsds/collections/789554

https://gitee.com/aimenfeifei/collections/789555

https://gitee.com/luojingsds/collections/789554

https://gitee.com/aimenfeifei/collections/789549

https://gitee.com/luojingsds/collections/789550

https://gitee.com/aimenfeifei/collections/789549

https://gitee.com/luojingsds/collections/789550

https://gitee.com/aimenfeifei/collections/789549

https://gitee.com/luojingsds/collections/789545

https://gitee.com/luojingsds/collections/789545

https://gitee.com/aimenfeifei/collections/789546

https://gitee.com/luojingsds/collections/789545

https://gitee.com/aimenfeifei/collections/789542

https://gitee.com/luojingsds/collections/789541

https://gitee.com/aimenfeifei/collections/789542

https://gitee.com/luojingsds/collections/789541

https://gitee.com/aimenfeifei/collections/789538

https://gitee.com/luojingsds/collections/789537

https://gitee.com/aimenfeifei/collections/789538

https://gitee.com/luojingsds/collections/789537

https://gitee.com/aimenfeifei/collections/789532

https://gitee.com/luojingsds/collections/789531

https://gitee.com/aimenfeifei/collections/789532

https://gitee.com/luojingsds/collections/789531

https://gitee.com/aimenfeifei/collections/789532

https://gitee.com/luojingsds/collections/789531

https://gitee.com/aimenfeifei/collections/789528

https://gitee.com/luojingsds/collections/789529

https://gitee.com/aimenfeifei/collections/789528

https://gitee.com/luojingsds/collections/789525

https://gitee.com/aimenfeifei/collections/789524

https://gitee.com/luojingsds/collections/789525

https://gitee.com/aimenfeifei/collections/789524

https://gitee.com/luojingsds/collections/789520

https://gitee.com/aimenfeifei/collections/789521

https://gitee.com/aimenfeifei/collections/789521

https://gitee.com/luojingsds/collections/789520

https://gitee.com/aimenfeifei/collections/789516

https://gitee.com/luojingsds/collections/789517

https://gitee.com/aimenfeifei/collections/789516

https://gitee.com/luojingsds/collections/789517

https://gitee.com/luojingsds/collections/789511

https://gitee.com/aimenfeifei/collections/789512

https://gitee.com/luojingsds/collections/789511

https://gitee.com/aimenfeifei/collections/789512

https://gitee.com/luojingsds/collections/789511

https://gitee.com/aimenfeifei/collections/789508

https://gitee.com/luojingsds/collections/789507

https://gitee.com/aimenfeifei/collections/789508

https://gitee.com/luojingsds/collections/789507

https://gitee.com/aimenfeifei/collections/789504

https://gitee.com/luojingsds/collections/789505

https://gitee.com/aimenfeifei/collections/789504

https://gitee.com/luojingsds/collections/789503

https://gitee.com/aimenfeifei/collections/789499

https://gitee.com/luojingsds/collections/789498

https://gitee.com/luojingsds/collections/789498

https://gitee.com/aimenfeifei/collections/789499

https://gitee.com/luojingsds/collections/789498

https://gitee.com/aimenfeifei/collections/789495

https://gitee.com/luojingsds/collections/789496

https://gitee.com/aimenfeifei/collections/789495

https://gitee.com/luojingsds/collections/789490

https://gitee.com/aimenfeifei/collections/789491

https://gitee.com/luojingsds/collections/789490

https://gitee.com/aimenfeifei/collections/789491

https://gitee.com/luojingsds/collections/789490

https://gitee.com/aimenfeifei/collections/789487

https://gitee.com/luojingsds/collections/789486

https://gitee.com/aimenfeifei/collections/789487

https://gitee.com/luojingsds/collections/789486

https://gitee.com/aimenfeifei/collections/789483

https://gitee.com/aimenfeifei/collections/789483

https://gitee.com/luojingsds/collections/789482

https://gitee.com/luojingsds/collections/789482

https://gitee.com/aimenfeifei/collections/789479

https://gitee.com/luojingsds/collections/789478

https://gitee.com/aimenfeifei/collections/789479

https://gitee.com/luojingsds/collections/789478

https://gitee.com/aimenfeifei/collections/789475

https://gitee.com/luojingsds/collections/789474

https://gitee.com/aimenfeifei/collections/789475

https://gitee.com/luojingsds/collections/789474

https://gitee.com/aimenfeifei/collections/789471

https://gitee.com/luojingsds/collections/789469

https://gitee.com/aimenfeifei/collections/789471

https://gitee.com/luojingsds/collections/789469

https://gitee.com/luojingsds/collections/789469

https://gitee.com/aimenfeifei/collections/789464

https://gitee.com/aimenfeifei/collections/789464

https://gitee.com/luojingsds/collections/789465

https://gitee.com/luojingsds/collections/789465

https://gitee.com/aimenfeifei/collections/789464

https://gitee.com/luojingsds/collections/789461

https://gitee.com/aimenfeifei/collections/789460

https://gitee.com/luojingsds/collections/789461

https://gitee.com/aimenfeifei/collections/789460

https://gitee.com/luojingsds/collections/789455

https://gitee.com/aimenfeifei/collections/789456

https://gitee.com/luojingsds/collections/789455

https://gitee.com/luojingsds/collections/789455

https://gitee.com/aimenfeifei/collections/789456

https://gitee.com/aimenfeifei/collections/789452

https://gitee.com/luojingsds/collections/789453

https://gitee.com/aimenfeifei/collections/789452

https://gitee.com/luojingsds/collections/789448

https://gitee.com/aimenfeifei/collections/789449

https://gitee.com/luojingsds/collections/789448

https://gitee.com/aimenfeifei/collections/789449

https://gitee.com/aimenfeifei/collections/789445

https://gitee.com/luojingsds/collections/789444

https://gitee.com/aimenfeifei/collections/789445

https://gitee.com/luojingsds/collections/789444

https://gitee.com/aimenfeifei/collections/789439

https://gitee.com/luojingsds/collections/789440

https://gitee.com/aimenfeifei/collections/789439

https://gitee.com/luojingsds/collections/789440

https://gitee.com/aimenfeifei/collections/789439

https://gitee.com/luojingsds/collections/789437

https://gitee.com/aimenfeifei/collections/789434

https://gitee.com/luojingsds/collections/789437

https://gitee.com/luojingsds/collections/789433

https://gitee.com/aimenfeifei/collections/789434

https://gitee.com/luojingsds/collections/789433

https://gitee.com/aimenfeifei/collections/789429

https://gitee.com/luojingsds/collections/789430

https://gitee.com/aimenfeifei/collections/789429

https://gitee.com/luojingsds/collections/789430

https://gitee.com/luojingsds/collections/789424

https://gitee.com/aimenfeifei/collections/789425

https://gitee.com/luojingsds/collections/789424

https://gitee.com/aimenfeifei/collections/789425

https://gitee.com/luojingsds/collections/789424

https://gitee.com/aimenfeifei/collections/789421

https://gitee.com/luojingsds/collections/789420

https://gitee.com/aimenfeifei/collections/789421

https://gitee.com/luojingsds/collections/789420

https://gitee.com/aimenfeifei/collections/789417

https://gitee.com/luojingsds/collections/789416

https://gitee.com/aimenfeifei/collections/789417

https://gitee.com/luojingsds/collections/789416

https://gitee.com/aimenfeifei/collections/789413

https://gitee.com/luojingsds/collections/789412

https://gitee.com/luojingsds/collections/789412

https://gitee.com/aimenfeifei/collections/789413

https://gitee.com/aimenfeifei/collections/789409

https://gitee.com/luojingsds/collections/789408

https://gitee.com/aimenfeifei/collections/789409

https://gitee.com/luojingsds/collections/789408

https://gitee.com/luojingsds/collections/789403

https://gitee.com/aimenfeifei/collections/789404

https://gitee.com/luojingsds/collections/789403

https://gitee.com/aimenfeifei/collections/789404

https://gitee.com/luojingsds/collections/789403

https://gitee.com/aimenfeifei/collections/789401

https://gitee.com/luojingsds/collections/789402

https://gitee.com/luojingsds/collections/789397

https://gitee.com/aimenfeifei/collections/789396

https://gitee.com/aimenfeifei/collections/789396

https://gitee.com/luojingsds/collections/789397

https://gitee.com/aimenfeifei/collections/789396

https://gitee.com/luojingsds/collections/789391

https://gitee.com/aimenfeifei/collections/789392

https://gitee.com/luojingsds/collections/789391

https://gitee.com/aimenfeifei/collections/789392

https://gitee.com/luojingsds/collections/789391

https://gitee.com/aimenfeifei/collections/789388

https://gitee.com/luojingsds/collections/789387

https://gitee.com/aimenfeifei/collections/789388

https://gitee.com/luojingsds/collections/789387

https://gitee.com/aimenfeifei/collections/789382

https://gitee.com/luojingsds/collections/789383

https://gitee.com/aimenfeifei/collections/789382

https://gitee.com/luojingsds/collections/789383

https://gitee.com/aimenfeifei/collections/789382

https://gitee.com/luojingsds/collections/789379

https://gitee.com/aimenfeifei/collections/789380

https://gitee.com/luojingsds/collections/789379

https://gitee.com/aimenfeifei/collections/789374

https://gitee.com/luojingsds/collections/789375

https://gitee.com/luojingsds/collections/789375

https://gitee.com/aimenfeifei/collections/789374

https://gitee.com/aimenfeifei/collections/789374

https://gitee.com/luojingsds/collections/789371

https://gitee.com/aimenfeifei/collections/789370

https://gitee.com/luojingsds/collections/789371

https://gitee.com/aimenfeifei/collections/789370

https://gitee.com/luojingsds/collections/789367

https://gitee.com/aimenfeifei/collections/789366

https://gitee.com/aimenfeifei/collections/789366

https://gitee.com/luojingsds/collections/789367

https://gitee.com/luojingsds/collections/789362

https://gitee.com/aimenfeifei/collections/789363

https://gitee.com/luojingsds/collections/789362

https://gitee.com/aimenfeifei/collections/789363

https://gitee.com/aimenfeifei/collections/789359

https://gitee.com/luojingsds/collections/789358

https://gitee.com/aimenfeifei/collections/789359

https://gitee.com/luojingsds/collections/789358

https://gitee.com/aimenfeifei/collections/789353

https://gitee.com/luojingsds/collections/789354

https://gitee.com/aimenfeifei/collections/789353

https://gitee.com/luojingsds/collections/789354

https://gitee.com/aimenfeifei/collections/789353

https://gitee.com/luojingsds/collections/789349

https://gitee.com/aimenfeifei/collections/789350

https://gitee.com/luojingsds/collections/789349

https://gitee.com/aimenfeifei/collections/789350

https://gitee.com/luojingsds/collections/789346

https://gitee.com/aimenfeifei/collections/789345

https://gitee.com/luojingsds/collections/789346

https://gitee.com/aimenfeifei/collections/789345

https://gitee.com/luojingsds/collections/789342

https://gitee.com/aimenfeifei/collections/789341

https://gitee.com/luojingsds/collections/789342

https://gitee.com/aimenfeifei/collections/789341

https://gitee.com/luojingsds/collections/789338

https://gitee.com/aimenfeifei/collections/789337

https://gitee.com/luojingsds/collections/789338

https://gitee.com/aimenfeifei/collections/789337

https://gitee.com/luojingsds/collections/789334

https://gitee.com/aimenfeifei/collections/789333

https://gitee.com/luojingsds/collections/789334

https://gitee.com/aimenfeifei/collections/789333

https://gitee.com/luojingsds/collections/789328

https://gitee.com/aimenfeifei/collections/789329

https://gitee.com/luojingsds/collections/789328

https://gitee.com/aimenfeifei/collections/789329

https://gitee.com/luojingsds/collections/789328

https://gitee.com/aimenfeifei/collections/789323

https://gitee.com/luojingsds/collections/789324

https://gitee.com/aimenfeifei/collections/789323

https://gitee.com/luojingsds/collections/789324

https://gitee.com/aimenfeifei/collections/789323

https://gitee.com/luojingsds/collections/789320

https://gitee.com/aimenfeifei/collections/789319

https://gitee.com/luojingsds/collections/789320

https://gitee.com/aimenfeifei/collections/789319

https://gitee.com/luojingsds/collections/789316

https://gitee.com/aimenfeifei/collections/789317

https://gitee.com/luojingsds/collections/789316

https://gitee.com/aimenfeifei/collections/789312

https://gitee.com/luojingsds/collections/789313

https://gitee.com/luojingsds/collections/789313

https://gitee.com/aimenfeifei/collections/789312

https://gitee.com/aimenfeifei/collections/789308

https://gitee.com/luojingsds/collections/789309

https://gitee.com/aimenfeifei/collections/789308

https://gitee.com/luojingsds/collections/789309

https://gitee.com/luojingsds/collections/789304

https://gitee.com/aimenfeifei/collections/789305

https://gitee.com/aimenfeifei/collections/789305

https://gitee.com/luojingsds/collections/789304

https://gitee.com/aimenfeifei/collections/789299

https://gitee.com/luojingsds/collections/789300

https://gitee.com/aimenfeifei/collections/789299

https://gitee.com/luojingsds/collections/789300

https://gitee.com/aimenfeifei/collections/789299

https://gitee.com/luojingsds/collections/789296

https://gitee.com/aimenfeifei/collections/789295

https://gitee.com/luojingsds/collections/789296

https://gitee.com/aimenfeifei/collections/789295

https://gitee.com/luojingsds/collections/789290

https://gitee.com/aimenfeifei/collections/789291

https://gitee.com/luojingsds/collections/789290

https://gitee.com/aimenfeifei/collections/789291

https://gitee.com/luojingsds/collections/789290

https://gitee.com/aimenfeifei/collections/789287

https://gitee.com/luojingsds/collections/789286

https://gitee.com/aimenfeifei/collections/789287

https://gitee.com/luojingsds/collections/789286

https://gitee.com/aimenfeifei/collections/789283

https://gitee.com/luojingsds/collections/789282

https://gitee.com/luojingsds/collections/789282

https://gitee.com/aimenfeifei/collections/789283

https://gitee.com/aimenfeifei/collections/789279

https://gitee.com/luojingsds/collections/789278

https://gitee.com/aimenfeifei/collections/789279

https://gitee.com/luojingsds/collections/789278

https://gitee.com/aimenfeifei/collections/789274

https://gitee.com/luojingsds/collections/789273

https://gitee.com/aimenfeifei/collections/789274

https://gitee.com/luojingsds/collections/789273

https://gitee.com/aimenfeifei/collections/789274

https://gitee.com/luojingsds/collections/789272

https://gitee.com/aimenfeifei/collections/789270

https://gitee.com/aimenfeifei/collections/789270

https://gitee.com/luojingsds/collections/789265

https://gitee.com/aimenfeifei/collections/789266

https://gitee.com/luojingsds/collections/789265

https://gitee.com/aimenfeifei/collections/789266

https://gitee.com/luojingsds/collections/789265

https://gitee.com/aimenfeifei/collections/789261

https://gitee.com/luojingsds/collections/789262

https://gitee.com/luojingsds/collections/789262

https://gitee.com/aimenfeifei/collections/789261

https://gitee.com/luojingsds/collections/789258

https://gitee.com/aimenfeifei/collections/789259

https://gitee.com/luojingsds/collections/789258

https://gitee.com/aimenfeifei/collections/789255

https://gitee.com/luojingsds/collections/789254

https://gitee.com/aimenfeifei/collections/789255

https://gitee.com/luojingsds/collections/789254

https://gitee.com/aimenfeifei/collections/789250

https://gitee.com/luojingsds/collections/789251

https://gitee.com/aimenfeifei/collections/789250

https://gitee.com/luojingsds/collections/789251

https://gitee.com/aimenfeifei/collections/789248

https://gitee.com/luojingsds/collections/789249

https://gitee.com/aimenfeifei/collections/789246

https://gitee.com/luojingsds/collections/789243

https://gitee.com/aimenfeifei/collections/789242

https://gitee.com/luojingsds/collections/789243

https://gitee.com/aimenfeifei/collections/789242

https://gitee.com/luojingsds/collections/789239

https://gitee.com/aimenfeifei/collections/789238

https://gitee.com/luojingsds/collections/789239

https://gitee.com/aimenfeifei/collections/789238

https://gitee.com/luojingsds/collections/789233

https://gitee.com/aimenfeifei/collections/789234

https://gitee.com/luojingsds/collections/789233

https://gitee.com/luojingsds/collections/789233

https://gitee.com/aimenfeifei/collections/789234

https://gitee.com/aimenfeifei/collections/789231

https://gitee.com/luojingsds/collections/789230

https://gitee.com/aimenfeifei/collections/789231

https://gitee.com/aimenfeifei/collections/789228

https://gitee.com/luojingsds/collections/789227

https://gitee.com/luojingsds/collections/789227

https://gitee.com/aimenfeifei/collections/789222

https://gitee.com/luojingsds/collections/789223

https://gitee.com/aimenfeifei/collections/789222

https://gitee.com/luojingsds/collections/789223

https://gitee.com/aimenfeifei/collections/789222

https://gitee.com/luojingsds/collections/789217

https://gitee.com/aimenfeifei/collections/789218

https://gitee.com/luojingsds/collections/789217

https://gitee.com/aimenfeifei/collections/789218

https://gitee.com/luojingsds/collections/789217

https://gitee.com/aimenfeifei/collections/789212

https://gitee.com/luojingsds/collections/789213

https://gitee.com/aimenfeifei/collections/789212

https://gitee.com/luojingsds/collections/789213

https://gitee.com/aimenfeifei/collections/789212

https://gitee.com/luojingsds/collections/789211

https://gitee.com/aimenfeifei/collections/789210

https://gitee.com/luojingsds/collections/789204

https://gitee.com/aimenfeifei/collections/789209

https://gitee.com/aimenfeifei/collections/789205

https://gitee.com/luojingsds/collections/789204

https://gitee.com/aimenfeifei/collections/789205

https://gitee.com/luojingsds/collections/789204

https://gitee.com/aimenfeifei/collections/789200

https://gitee.com/luojingsds/collections/789201

https://gitee.com/luojingsds/collections/789201

https://gitee.com/aimenfeifei/collections/789200

https://gitee.com/aimenfeifei/collections/789199

https://gitee.com/luojingsds/collections/789198

https://gitee.com/aimenfeifei/collections/789197

https://gitee.com/luojingsds/collections/789194

https://gitee.com/aimenfeifei/collections/789193

https://gitee.com/luojingsds/collections/789194

https://gitee.com/aimenfeifei/collections/789193

https://gitee.com/luojingsds/collections/789192

https://gitee.com/aimenfeifei/collections/789190

https://gitee.com/aimenfeifei/collections/789190

https://gitee.com/aimenfeifei/collections/789189

相关推荐
youtootech5 小时前
HarmonyOS《柚兔学伴》项目实战09-待办列表 UI——List+ForEach+滑动删除
数据结构·ui·华为·list·harmonyos
鱼樱前端7 小时前
别再自己拼凑了!这款 Vue 3.5+ 严肃产品级组件库,把 AI 对话、工作流和复杂数据全包了!
javascript·vue.js·github
阿里嘎多学长8 小时前
2026-07-14 GitHub 热点项目精选
开发语言·程序员·github·代码托管
IpdataCloud9 小时前
跨区服玩家延迟高怎么办?用IP离线库自动分配到最近服务器
数据库·tcp/ip·github·php·ip
OpenTiny社区11 小时前
TinyEngine 2.11版本发布:AI 进一步融入画布,Vue 工程可一键转DSL
前端·vue.js·github
七牛开发者13 小时前
RAG 工程里的上下文剪枝:如何减少 68% 的上下文
前端·css·github
ndsc_d16 小时前
前端实战复盘:用AI直接生成响应式官网落地页与React源码
前端·人工智能·react.js·ui·前端框架·aigc·paico
Alex66302818 小时前
我重写了 Hermes Agent,专门修掉了它的 4 个硬伤
github
monsion18 小时前
AG-UI 协议详解:Agent 与用户之间缺失的那一层
人工智能·ui·个人开发