本文最后更新于 127 天前,如有失效请评论区留言。
微信小程序配置冲突解决
git统一忽略project.config.json和profile.js配置文件
git update-index --skip-worktree ./project.config.json
git update-index --skip-worktree ./miniprogram/utils/profile.js
恢复代码
git update-index --no-skip-worktree ./project.config.json
git update-index --no-skip-worktree ./miniprogram/utils/profile.js
但有个缺点就是如果改动了文件,当切换分支时会提示是否迁出,但迁出又会提示没有可迁出的内容,导致无法切换分支,所以放弃了