how to use git(3)
git checkout -b <new_branch_name> 创建分支并切换到分支
git branch -d <branch_name>删除分支
git show <commit> 比较commit和它的parent commit
git merge <branch1> <branch2>合并两个分支
merge 的时候发生conflict需要自己去消除
本文共 253 字,大约阅读时间需要 1 分钟。
how to use git(3)
git checkout -b <new_branch_name> 创建分支并切换到分支
git branch -d <branch_name>删除分支
git show <commit> 比较commit和它的parent commit
git merge <branch1> <branch2>合并两个分支
merge 的时候发生conflict需要自己去消除
转载于:https://www.cnblogs.com/gavinxing/p/5167556.html