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

相关推荐
MicrosoftReactor2 小时前
技术速递|面向无障碍的持续 AI:GitHub 如何将反馈转化为包容性
人工智能·github
青晚舟15 小时前
AI 时代前端还要学 Docker & K8s 吗?我用一次真实部署经历说清楚
前端·github
星浩AI15 小时前
现在最需要被 PUA 的,其实是 AI
人工智能·后端·github
AI程序员17 小时前
Pi Monorepo 学习指南
github
新缸中之脑18 小时前
Unsloth Studio:LLM微调UI
ui
Renhao-Wan21 小时前
基于 GitHub Actions 构建标准化 CI/CD 流水线——从手动部署到全自动化交付
ci/cd·自动化·github
irpywp1 天前
Skales:你的本地AI特工
github
CoderJia程序员甲1 天前
GitHub 热榜项目 - 日榜(2026-03-19)
人工智能·ai·大模型·github·ai教程