跳至主要內容
在 Git Bash 中使用 tree 命令

概述:

在开发项目时经常需要在描述文档中展示项目的文件目录结构,以便查找文件。在大多数的 Linux 发行版中是自带 tree 命令的,而在 windows 中没有自带tree命令,所以我们可以通过 Git Bash 完成此操作。

安装 Tree for Windows

下载地址: Tree for Windows


Loclink原创小于 1 分钟git
git 开发必要配置

一、首次使用需配置全局用户信息:

  1. 设置用户名:
git config --global user.name "test"

Loclink原创大约 1 分钟git