赞
踩
1、在Gitee创建仓库
2、git clone 克隆到本地
git clone 地址
git branch -r 查看分支
git branch -r
3、在master下创建分支
git branch develop
切换分支
git checkout develop
将develop分支提交到 远程仓库中
git push --set-upstream origin develop(<分支名称>)
查看远程分支
git branch -r
接着往下创建 功能分支、测试分支 …
查看分支
git branch
4、在develop分支下创建功能分支
git branch feature/home
git checkout feature/home
git branch
git push --set-upstream origin feature/home
vue create <项目名称>
⚠️ 项目名称要与远程仓库的名称保持一致
cnpm install express-generator -g
express --view==ejs <项目名称>
git checkout develop
git add .
git commit -m '项目初始化'
git push
git config -lr
git config user.name 'name',
git config user.email 'xxxx@qq.com'
git clone -b develop(<分支名称>) <.git地址>
git log
** 记录 hash: hash码
git checkout --track origin/feature/home
git cherry- pick hash码
git add .
git commit -m '功能完毕'
《Git项目搭建及初始化(领导与我)》
https://www.yuque.com/docs/share/374b4243-4995-4910-a4fa-5b551f0ef756?# 《Git项目搭建及初始化(领导与我)》
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。