git config –global credential.helper store 永久存储 git config --global --unset credential.helper 移除存储密码
编程技术
cURL error 60: See http://curl.haxx.se/libcurl/c/libcurl-errors.html
本地php开发环境出现 cURL error 60: See http://curl.haxx.se/libcurl/c/libcurl-errors.html 解决方案: 到 https://curl.haxx.se/ca/cacert.pem 下载证书文件 cacert.pem,将其保存到 P...
git操作及fatal: Authentication failed for错误解决
1、配置用户信息 git config --global user.name [username] git config --global user.email [email] 2、查询用户信息 git config --list 3、如果push遇到在输入密码是熟错后,就会报这个错误fa...
如何给自己的博客 添加卡通美女
在你的公共文件中添加 如下代码 <link rel="stylesheet" type="text/css" href="https://live2d.szwyll.com/assets/waifu.min.css?v=1.4.2"/> <script type="text/javascript" src="https://live2...
一个简单的基于Java库,Java对象序列化到XML XStream
<dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.11.1</version> </dependency> 1、序列化对象到XML X...
解决centos 中文情况下乱码的问题
yum groupinstall "X Window System" -y yum -y groupinstall chinese-support yum -y groupinstall Fonts
vue Nginx配置cros跨域以及遇到401响应的问题
现在大多数web程序都使用了 前后端分离 都会使用在nginx 配置跨域 请求头 类似下面代码: add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_hea...
thinkphp 日志记录通用方法
if(!function_exists('log_to_data')){ function log_to_data($name, $content) { if (!is_dir(ROOT_PATH.'runtime/'. $name)) { mkdir(ROOT_PATH.'runtime/'. $name . "/", 077...
ios 超级签名 如何获取 ios 设备的 uuid
苹果允许通过描述文件获取 获取用户的uuid uuid.mobileconfig 描述文件格式为 <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.c...
如何搭建一个ios超级签名系统
什么是ios 超级签名 签名原理其实就是,使用了苹果提供给开发者的Ad-Hoc分发通道,把安装设备当做开发设备进行分发,要做到自动化首先需要获取用户设备的UDID,获取UDID后需要将UDID添加到苹果开发者中心进...