Skip to content
本页目录

2023.7的问题

7.7 vite创建项目的时候报错failed to load config

vite报错:failed to load config from xxx\my-vue-app\vite.config.ts error when starting dev server: Error: The URL must be of scheme file at

今天用pnpm 取创建项目的时候报了错误,发现网上都没有很好的解决方案

image-20230707115002035

解决方案

执行pnpm update

image-20230707115158604

7.12 git记录文件名首字母大小写的问题

修改文件名的大小 上传到git上的时候 远程git仓库没有改变 解决方案 这里就只有迂回一下,先把文件夹命名成其他名称,然后再命名为大写就行了:

shell
git mv test-dir tmp
git mv tmp TEST-DIR

Git 仓库中文件名大小写问题_git 大小写

7.12 git 拉取特定分支

shell
 git clone -b 远程分支 远程仓库地址

image-20230712134339753