赞
踩
npm config get registry
npm config set registry https://registry.npm.taobao.org/ #设置淘宝镜像地址或其他镜像地址
git remote -v
git remote add origin http://git.XXXX.com/XXX/XXX.git/
git remote set-url origin http://git.XXXX.com/XXX/XXX.git/
git branch -a
git fetch origin
git branch <new-branch-name> <tag-name>
例如:当前有名为V1.0.2
的标签,需要基于这个标签创建一个名为hotfix/V2.0.0
的开发分支
git branch hotfix/V2.0.0 V1.0.2
此时创建的是本地分支,可切换到新建的分支中进行业务代码开发
git push origin hotfix/V2.0.0
1.切换到B分支
git checkout B分支名
2.拉取B分支最新代码
git pull
3.将A合并到B(当前在B分支,将A合并到B)
git merge A
4.提交代码
git push
1.查看A分支上的提交日志,找到对应提交记录
git log A分支名
2.切换到B分支
git checkout B分支名
3.执行某次提交的合并
git cherry-pick 53dcf97ad0a8fa4c51616c04da10078afd461b11
4.提交
git push
持续更新中~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。