赞
踩
假设现有分支develop、test。需要将test合并到develop分支。
首先切换到需要合并的分支,git checkout develop。
git merge test
test分支会合并到develop,会有test分支提交信息,同时最后一条提交会是Merge branch ‘test’ into develop。
git merge test --no-commit
test分支会合并到develop,会有test分支提交信息,最后一条提交与test分支一致。
git merge test --squash
test分支会合并到develop,没有test分支提交信息,需要自行git commit。
作者:车到山前必有路2021
链接:https://www.jianshu.com/p/c778e88fd57a
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。