01 2022 档案
摘要:首先来看,接口及参数 postman模拟上传 需求:将生成好的,远程excel附件,以及一些常规数据通过接口,传递过去。 代码部分: 1.将远程excel附件,转化为MultipartFile public class FileToMultipartFileUtils { /** * 远程file文
阅读全文
摘要:git branch 命令操作 1、查看本地分支 : git branch 2 、删除本地已合并的分支: git branch -d [branchname] 某些情况下可以用 git branch -D [branchName] (使用时应注意是否已合并) 3、删除远程分支: git push o
阅读全文
摘要:一天,在合并代码,commit时,然后git push origin master一下,报错,错误内容: Please make sure you have the correct access rights and the repository exists. 然后谷歌了一下,原来是ssh key
阅读全文