Git版本管理(02)patch操作和分支操作整理
# 创建补丁文件
git format-patch -1 HEAD
# 应用补丁
git apply /path/to/patchfile
# 查看补丁内容
git show /path/to/patchfile
# 删除补丁文件
rm /path/to/patchfile
# 创建并切换到新分支
git checkout -b new-branch
# 合并分支,并解决冲突(如果有)
git merge other-branch
# 删除分支
git branch -d other-branch
# 强制删除未合并的分支
git branch -D other-branch
# 查看分支列表
git branch
# 查看远程分支
git branch -r
# 查看所有分支
git branch -a
这段代码展示了如何创建、应用、查看和删除补丁文件,以及如何创建、切换、合并和删除分支。这些操作是开发者在日常工作中经常需要进行的,对于学习Git版本管理非常有帮助。
评论已关闭