项目搭建
-
安装node (一般选择lts稳定版本)(node -v查看版本号) https://nodejs.org/en/
-
安装npm(npm -v查看版本号) https://www.npmjs.cn/
-
安装git(gitee)(git --version查看版本号) https://git-scm.com/
-
码云注册
流程: 个人主页( 名称 - 语言选择 - 添加gitgnore - 私有 - readme创建 ) -
设置私钥
流程:
安装 Git:网址
鼠标右键,点击 ‘git bash here’
配置一下name 、eamil
git config --global user.name ‘用户名’
git config --global user.email ‘邮箱’
生成 SSH KEY:ssh-keygen -t rsa -C ‘码云注册邮箱’
日志信息里面的 SSH KEY 存储路径找到 .ssh/id_rsa.pub 文件
复制 .ssh/id_rsa.pub 文件内容
打开 git 网站,右上角用户头像,点击 settings,左侧菜单 SSH KEYS,将文件内容复制到 key 里 添加就可以了
开源项目选择许可证License :https://choosealicense.com/
常用的gitignore有总结:https://github.com/github/gitignore
项目初期可参考如下:
https://edu.csdn.net/skill/vue?utm_source=AI_act_vue
https://blog.51cto.com/u_15098004/2611435