git 回滚操作 自己写了代码想要回滚,之前自己的方法太耽误时间了,同事教了一个方法可以快速回滚 第一部分:回滚:点击history-->Version Control-->log 同时选中两个版本--> 2、然后回滚; 第二部分提交区 git 有四个区域,1、编辑区,2、暂存区 3、待提交区 4、 ...
分类:
其他好文 时间:
2021-06-02 11:02:07
阅读次数:
0
在Web.config配置文件中添加woff字体的MIME类型 如果网站是使用ASP.NET 或者ASP.NET MVC 编写的,可以很方便的直接使用配置文件进行woff字体的配置。只要在Web.config中的system.webServer节点添加下面的配置可以了。 <system.webSer ...
分类:
其他好文 时间:
2021-06-02 10:56:34
阅读次数:
0
set hlsearch set number syntax on set t_Co=256 colorscheme molokai let vim_markdown_preview_browser='Google Chrome' let vim_markdown_preview_github=1 ...
分类:
系统相关 时间:
2021-06-02 10:41:09
阅读次数:
0
You have n boxes. You are given a binary string boxes of length n, where boxes[i] is '0' if the ith box is empty, and '1' if it contains one ball. In ...
分类:
其他好文 时间:
2021-06-02 10:37:12
阅读次数:
0
mvn install:install-file -Dfile=5upay-sdk-java-webox.jar -DgroupId=com.pay -DartifactId=sdk -Dversion=1.0 -Dpackaging=jar -DlocalRepositoryPath=C:\Use ...
分类:
其他好文 时间:
2021-05-25 18:13:36
阅读次数:
0
unionfs 是一个灵活强大的组合fs npm 包,可以方便的进行多fs 实现的组合,比如基于内存的fs 与本地fs 组合实现强大的 npm 扩展以及配置管理。。。 参考代码 package.json { "name": "mem-fs-app", "version": "1.0.0", "mai ...
分类:
其他好文 时间:
2021-05-25 17:54:06
阅读次数:
0
1、pom.xml文件添加依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.62</version> </dependency> 2、将对象转为json格式的字符 ...
分类:
编程语言 时间:
2021-05-25 17:44:13
阅读次数:
0
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <!-- 作用域范围为test --> <scope>test</scope> </dependency> 将<sc ...
分类:
其他好文 时间:
2021-05-24 17:22:10
阅读次数:
0
创建一个文件UAC.manifest,内容如下: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1 ...
给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 方法1:暴力解法 很显然会报 超过时间限制。 /** * @param {number[]} nums * @return {number} */ var maxSubArray = functi ...
分类:
其他好文 时间:
2021-05-24 16:50:25
阅读次数:
0