保存用户信息sudo git config --global credential.helper store清除用户信息sudo git credential-manager uninstal删除远程分支git push origin --delete pro如果要把一个仓...
Java8收集list子对象的属性为一个字符串
// 使用 Stream 对 jfPoolBusinessList 中的元素进行映射处理,提取每个元素的 businessNumber 属性// 返回一个经过映射后的 StreamjfPoolBusinessList.stream().map( // 提取每个元素的 ...
一份可用的redis.conf
# Redis configuration file example.## Note that in order to read the configuration file, Redis must be# started with the file path as fir...
树莓派3b增设定时重启任务
因为树莓派长时间运行之后会出现一些奇怪的问题,毕竟也不能对一块电路板有过高的期待所以就考虑增加一个定时重启,这样应该能够改善这些奇怪的问题。1.进入编辑配置sudo nano /etc/crontab2.进行一下配置的修改# /etc/crontab: system-wid...
AJAX读取XML文档的用法,懒得做笔记了
function loadXMLDoc() { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 &&...