# gittest **Repository Path**: lxtqyh/gittest ## Basic Information - **Project Name**: gittest - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-05 - **Last Updated**: 2025-05-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README git branch 查看分支 git branch 创建分支 git branch -d 删除分支 git checkout git switch 切换分支 git checkout -b git switch -c 创建+切换分支 git merge 合并某分支到当前分支 git merge --no-ff 合并某分支到当前分支(关闭快速合并) git config --global merge.ff false git remote -v 查看远程库信息 git push origin branch-name 从本地推送分支 git pull 从远程抓取分支, git checkout -b branch-name origin/branch-name 在本地创建和远程分支对应的分支,本地和远程分支的名称最好一致;