如何解决git冲突:Your local changes to the following files would be overwritten by merge...
20 July,2023, Posted by : Mesong
git stash 备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到暂存区中。 git pull 拉取服务器上的代码到本地。 git stash pop 从暂存区读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。 git stash list 显示暂存区中的所有备份,可以利用这个列表来决定从那个地方恢复。 git stash clear 清空暂存区。 ...
使用swap创建临时分区
03 July,2023, Posted by : Mesong
使用swap创建临时分区 sudo dd if=/dev/zero of=/swapfile bs=64M count=32 #count的大小就是增加的swap空间的大小,64M是块大小,所以空间大小是bs*count=2048MB sudo mkswap /swapfile #把刚才空间格式化成swap格式 chmod 0600 /swapfile #该目录权限,不改的话,在下一步启动时会报“swapon: /swapfile: insecure permissions 0644, 0600 suggested.”错误 sudo swapon /swapfile ...
使用VMware fushion 8 + centos 7.0时,无法使用共享功能,所以必须安装vmtools。但是安装过程中有2个错误需要解决。
30 May,2023, Posted by : Mesong
1、gcc错误 Searching for GCC… The path “” is not valid path to the gcc binary. 2、内核头文件问题 Searching for a valid kernel header path… The path “” is not a valid path to the 3.10.0-229.el7.x86_64 kernel headers. 解决方法:在安装vmtools前,先安装需要的文件 yum -y update yum -y insta...
centos 下内容查找
26 May,2023, Posted by : Mesong
find ./ -type f -print0| xargs -0 grep 'your content' ...
CSS media 用法,自适应css中media要点
05 May,2023, Posted by : Mesong
代码: .gywmImgDiv img { width: 550px;height: auto; } 解释:浏览器任何宽度下,class=gywmImgDiv 的图片大小为550px,高度自动。 代码: @media screen and (min-width: 760px) { .gywmImgDiv img { width: 500px;height: auto; } } 解释:浏览器屏幕最小宽度760px以上,class=gywmImgDiv 的图片大小为500p...
nginx反向代理https主机配置参数事项
25 April,2023, Posted by : Mesong
location /static/ { proxy_set_header Host www.domainhostname.com; #换要指定相应的host proxy_ssl_server_name on;//代理域名证书 &n...
openssl 生成证书
24 April,2023, Posted by : Mesong
openssl req -x509 -nodes -days 36500 -newkey rsa:2048 -keyout /home/data/ssl/nginx.key -out /home/data/ssl/nginx.crt ...
php 浮点数对比
14 April,2023, Posted by : Mesong
function func($otderTotalGrand, $historyRefundAmount,$recharge_amount ) { $canRefundAmount = $otderTotalGrand - $historyRefundAmount; $canRefundBool = bccomp($canRefundAmount, $recharge_amount, 2); if ($otderTotalGrand < $historyRefundAmount || $canRefundBool === -1) { throw ...