logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

git合并两个没有共同历史提交记录的分支:fatal: refusing to merge unrelated histories

场景:某个git仓库原有 master 分支,后面自己本地新建了一个项目,然后把新建的这个推到了这个仓库的另外一个分支 feature/vue-pc 。现在要对这两个分支进行合并,该如何操作?正常情况是直接git merge 这两个分支,但是git会报错:fatal: refusing to merge unrelated histories意思是:致命:拒绝合并不相关的历史,因为没有共同提交记录

文章图片
#git#github#vscode
关于npm cache clean --force使用

今天,我把node_modules删除掉,然后重新npm run install 的时候出现了如下错误:npm ERR! Unexpected end of JSON input while parsing near '...l.com"}],"directories'npm ERR! A complete log of this run can

#npm
vue axios 请求下载文件(arraybuffer)接口

vue项目,利用axios 请求下载文件(arraybuffer)接口// vue mtodsimport { handleDownloadFile } from '@/utils/index'async exportConfig() {try {const res = await axios({method: 'get',url: `/v1/rest/app/config/downloadCon

#vue.js#javascript#前端
关于npm cache clean --force使用

今天,我把node_modules删除掉,然后重新npm run install 的时候出现了如下错误:npm ERR! Unexpected end of JSON input while parsing near '...l.com"}],"directories'npm ERR! A complete log of this run can

#npm
到底了