git init
- 创建新的git仓库:创建新目录,进入目录,执行 git init。
- 生成.git目录,该目录为本地仓库
title: 初识命令行
date: 2019-02-11 11:16:24
进入目录 cd
显示当前目录 pwd
创建目录 mkdir
创建多级目录 mkdir -p
查看目标路径 ls 路径
查看当前路径 ls
查看所有文件 ls -a
查看更多信息 ls -l ls -la
创建文件 echo ‘内容’ > 文件路径
强制创建文件 echo ‘内容’ >! 文件路径
追加内容 echo ‘内容’ >> 文件路径
创建文件 touch file
更新文件改变时间 touch file
查看文件内容 cat file.txt
合并文件 cat file1.txt file2.txt > file3.txt
重命名文件 mv file1 file2
移动文件到目录 mv file directory
使用expainshell.com
在网站搜索框中直接输入想查找的shell命令即可查找该命令含义。
比如 cat 命令
cat: concatenate files and print on the standard output.
linear 线性
gradient 变化率
generator 形成 产生者
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |
More info: Server
1 | $ hexo generate |
More info: Generating
1 | $ hexo deploy |
More info: Deployment