# git-learn **Repository Path**: hejiuzui/git-learn ## Basic Information - **Project Name**: git-learn - **Description**: git学习运用,实用小技巧 - **Primary Language**: Unknown - **License**: LGPL-3.0 - **Default Branch**: test - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-27 - **Last Updated**: 2025-11-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 1. git 联系 #### 1. git rebase ```bash git rebase -i # 合并多次提交 eg 1: git rebase -i HEAD~2 合并最近两次提交 eg 3: git rebase -i HEAD~3 合并最近两次提交 git cherry-pick ```