9 5 2 1 1 1 tools 中的文章

文件树Tree的使用

文件树Tree 经常在博客或者文档中看到如下目录展示形式: /home/download │ │ fileRoot.txt │ tree.txt │ ├─dir_a │ fileA.txt │ ├─dir_b │ fileB.txt │ └─dir_c └─dir_c_c filec.txt 这样的文件目录展示形式是如何展示的?其实都是一个tree……

阅读全文

Git常用命令

git远程仓库 $ git remote #列出远程仓库的名字 -v 显示仓库地址 $ git remote add origin <URL> #添加地址URL的仓库命名为origin $ git branch -r #查看远程分支 $ git remote show origin # 查看远程库的一些信息 $ git remote prune origin #删除远程失效的分支 git提交……

阅读全文