logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

linux 没有iptables文件的解决办法

systemctl stop firewalld 关闭防火墙yum install iptables-services 安装或更新服务systemctl enable iptables 启动iptablessystemctl start iptables 打开iptables

git 使用场景总结一

1. git 使用情景一修改了文件,发现不用修改,想回到修改之前的版本回退制定文件git checkout -- 文件名1,文件名2 #回退制定文件回退所有文件git checkout .注意:回退后的文件状态为修改状态2. git 使用情景二修改后的文件加入到了暂存区,即进行了下面的命令,想从暂存区中删除git add .或 git add 文件名解决方案...

到底了