
git
文章平均质量分 91
柏舟飞流
山野村夫,少求学于江城,一无所长,性沉闷,好编码自娱.
展开
-
LAMP(Linux+Apache+MySQL+PHP)服务器+开发环境搭建
centOS搭建LAMP服务器 1、配置网络 vi /etc/sysconfig/network-scripts/ifcfg-ens33 ONBOOT=yes 2、关闭防火墙(设置为开机不启动) systemctl disable firewalld.service 3、修改主机名(可选) hostnamectl set-hostname x...原创 2019-10-17 11:01:57 · 961 阅读 · 0 评论 -
git常用命令和使用案例
1、设置用户名:git config --global user.name "xxx" 2、输入邮箱:git config --global user.email "xxx@xxx.com" 设置全局密码:git config --global user.password "xxx" 3、把当前目录变成git仓库:git init 4、将文件添加到仓库:git add filename...原创 2019-10-17 11:16:38 · 454 阅读 · 0 评论