Timezone

Timezone 参考链接: https://bbs.huaweicloud.com/blogs/detail/243151 http://www.timeofdate.com/timezone/abbr/all 一、设置时区 timedatectl set-timezone Asia/Shanghai 二、时区详细 1、概念 ​ 在以前全球国家都处于农业社会的时候,人们通过每天观察太阳的位置来决定时间,这就使得不

Recovery

电脑一键恢复: Dell: F12 –> Supportassist OS Recovery MSI:F3 Huawei: F10 Mac: 长按电源键直到Option出现(m系列mac) 联想:https://robotrs.le

Git-to-use

Git使用规范 一、commit <type>(scope): <subject> Header <BLANK LINE> <body> Body <BALNK LINE> <footer> Footer commit message包含Header、Body、Footer三个部分,其中Header是必须

svn

SVN 介绍: 代码版本管理工具 能记住本版修改的情况 查看所有的修改记录 恢复到任何历史版本 恢复已经删除的文件 svn与git相比的优势: 使用简单、上手快

Git

Git 一、git基本使用 1、commit [root@node01 project]# git add 1.txt [root@node01 project]# git commit -m "create new 1.txt" [master (root-commit) 3e8ce87] create new 1.txt 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 1.txt 2、diff文件 [root@node01 project]# git diff 1.txt diff --git a/1.txt b/1.txt index e69de29..21d56a0 100644 --- a/1.txt