創建測試分支 一般會臨時修改一些代碼 這些修改 不該該反映到主分支中 所以 用 commit 隔離住?git format-patch 生成某個文件的 patch 進行合併git reflog git cherry-pick 對某個特定修改 commit 合併, 例如 這個commit 裏面只有一個文件 被修改了, 這些修改須要反饋到主分支中取 則 使用 創建臨時性的 合併 分支 對某個commit 創建分支git branch xxxx commitgit diff commit commit file > diff不一樣commit 之間文件的差別 其它分支 貢獻 功能 到 主分支 上, 主分支 合併到 當前測試分支上git
git branch op2 commit測試
根據特定commit 創建新的分支orm