核心调整
设置项 注释: 1 禁止core dump: cat <>/etc/security/limits.conf * soft core 0 * hard core 0 END_ENTRIES 允许core dump会耗费大量的磁盘...
设置项 注释: 1 禁止core dump: cat <>/etc/security/limits.conf * soft core 0 * hard core 0 END_ENTRIES 允许core dump会耗费大量的磁盘...
检查项 注释: 1 限制 at/cron给授权的用户: cd /etc/ rm -f cron.deny at.deny echo root >cron.allow echo root >at.allow chown root:...
检查项 注释: 1 清除了operator、lp、shutdown、halt、games、gopher 帐号 删除的用户组有: lp、uucp、games、dip 其它系统伪帐号均处于锁定SHELL登录的状态 2 验证是否有账号存在空口令的...
总结 显示颜色提示 git config --global color.ui true 查看全部Git配置 git config --list
中文版 速查表 创建 克隆现有仓库 git clone ssh://user@domain.com/repo.git 创建一个新的本地仓库 git init 本地修改 查看工作目录中已更改的文件,即查看git状态 git status 查看...
说明 我们在工作时,经常会遇到已经提交远程仓库,但是又不是我想要的版本,要撤下来。这时可以使用下列命令: # 不删除工作区的修改,仅撤销commit git reset --soft <commit_id> # 删除工作区的修改...
git merge origin master和git merge origin/master的区别 git merge origin master # 将origin merge 到 master 上 git merge origin/m...
说明 有时在pull或merge时会出现下述错误: fatal: refusing to merge unrelated histories 解决办法: git merge origin/master --allow-unrelated-h...
git 的 merge 与 no-ff merge 的不同之处 通常,合并分支时,如果可能,Git会用Fast forward模式,但这种模式下,删除分支后,会丢掉分支信息。如果要强制禁用Fast forward模式,Git就会在merge...
结论 删除指定本地标签 git tag -d <tag_name> 删除指定远程标签 git push origin :refs/tags/<tag_name> 推送一个本地标签 git push origin &l...