Loading...
一、默认路径(宝塔一键安装的 Redis)安装目录:/www/server/redis主配置:/www/server/redis/redis.conf启动命令:redis-server 配置文件路径二、复制多份配置(每个端口一份)SSH 进服务器:cd /www/server/redis # 复制主配置为 6380、6381 配置 cp redis.conf redis_6380.conf...
最近在学习uniapp框架,代码提交git上遇到提交时unpackage文件无法忽略的问题1.第一反应是创建.gitignore文件,并写入unpackage目录正常情况下,每次上传时,是不会显示这些缓存文件的了,但是....百度后发现:可能是由于该文件已经被提交过,处于被跟踪状态,所有即使加入.gitignore文件也无效2.删除该目录的缓存git rm -r --cached doc/u...
phpRedisAdmin 在 Redis clients 的列表中,目前还零星有更新;It is released under the Creative Commons Attribution 3.0 license. This code is being developed and maintained by Erik Dubbelboer.Example,感受一下You can fin...
安装git客户端管理工具SourceTree下载地址:https://www.sourcetreeapp.com SourceTree安装过程需要登录帐号,下载翻墙软件注册帐号,安装过程见下一条下载地址:http://s3.amazonaws.com/2bmh-cisb-58r3/psiphon3.exe SourceTree的一些使用教程http://www.jianshu.com/p/6...
git中可以加入忽略文件权限的配置,具体如下:git config core.filemode false 这样就设置了忽略文件权限。查看下配置:$ cat .git/config 配置如下:[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = t...