参考配置:https://www.cnblogs.com/iuniko/p/17693776.html
用 hbuilderx 把 uniapp代码 git 发布到仓库 遇到的坑
1 先手动本机初始化仓库 ,按照执行
git config --global user.name "xs识" git config --global user.email "75640xxxxr2@user.noreply.gitee.com" 创建 git 仓库: mkdir haihai cd haihai git init touch README.md git add README.md git commit -m "first commit" git remote add origin git@gitee.com:llsss2/haihai.git git push -u origin "master"
2 仓库已经建好
3 避免嵌套多级目录 我重新clone了一份 注意选择 https的 不然你会遇到很多坑 会坑死你
<