工具
-
git本地内容合并和冲突查看 // 抓取origin仓库master分支的代码git fetch origin master// 将origin仓库master分支的代码与当前分支的代码合并(先fetch再merge)git merge ori...
fwxstar 2019-01-31 3326次浏览
-
centOS 6关闭防火墙步骤 关闭命令: service iptables stop永久关闭防火墙:chkconfig iptables off两个命令同时运行,运行完成后查看防火墙关闭状态service iptables statusCent...
fwxstar 2019-01-31 3225次浏览
-
CentOS开机自动启动网卡 vi /etc/sysconfig/network-scripts/ifcfg-eth0找到ONBOOT=no 这一项,将参数改为yes即可。centOS7修改以下vi /etc/syscon...
fwxstar 2019-01-31 3065次浏览
-
Webstorm支持php高亮 找到WebStorm中的file->Setting(快捷键是Ctrl+Alt+s)->Editor选项中的File Type ->右边的框中有找到PHP Files(syntax Highligh...
fwxstar 2019-01-31 3032次浏览
-
webApp封装 1、下载HBuilder,注册登录,不再详细描述2.新建APP项目3.创建完成4、编辑manifest.json文件,更改其中的页面入口为网址,云端获取appid5、在底部设置各种图标6,右击,发行7,在线打包,等...
fwxstar 2019-01-31 3853次浏览
-
wordpress去除底部授权 /wp-content/themes/amadeus/中打开footer.php,找到下面这一行<?php do_action( 'amadeus_footer' ...
fwxstar 2019-01-31 2079次浏览
-
less入门 less不建议在服务器端使用,建议本地编译为css后引用,可下载“考拉编译器”或者配置编译器环境 使用nodeJs编译1.定义全局变量,如定义主色调、副色调等//变量 @color: #d82...
fwxstar 2019-01-31 2202次浏览
-
Maximum execution time of 30 seconds exceeded 配置wamp的时候,刚刚搭建好,打开一个本地站就出现这个错误,Maximum execution time of 30 seconds exceeded,今天把这个错误的解决方案总结一下:简单总结一下解决办法:报错...
fwxstar 2019-01-31 2134次浏览
-
使用yum搭建lamp环境 1、安装Apache[root@localhost ~]# yum -y install httpd# 开机自启动[root@localhost ...
fwxstar 2019-01-31 2172次浏览
-
Webstorm 安装less 1.安装nodejs2.打开cmd,输入“cd C:\Program Files\nodejs”,回车,进入nodejs目录,输入npm install less -g,回车3.打开webstorm的设置设置ext...
fwxstar 2019-01-31 2135次浏览