# project-1-20101 **Repository Path**: linc5403/project-1-20101 ## Basic Information - **Project Name**: project-1-20101 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-22 - **Last Updated**: 2024-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git的分支操作 ## 创建本地分支 `git checkout -b <新的本地分支名称>` ## 创建远端分支 `git push origin <远端分支名称>` ## 切换本地分支 `git checkout <本地分支名称>` ## 删除远端分支 `git push --delete origin <远端分支名称>` ## 删除本地分支 `git branch -D <本地分支名称>`