概述
- 开发者:Git for Windows(Git 社区)
- 初次发布:2007年(作为 Git for Windows 的一部分)
- 平台:Windows
- 基础:基于 Unix Shell(例如 Bash)
- 目的:提供在 Windows 上使用 Git 和类 Unix 环境的工具
特点
- Unix-like 环境:在 Windows 上模拟 Unix Shell 环境,提供常见的 Unix 命令。
- 轻量级:安装包小,资源占用少,启动速度快。
- Git 集成:集成了 Git 命令行工具,方便开发者进行版本控制操作。
- 简单易用:对于熟悉 Unix/Linux 的用户,Git Bash 提供了熟悉的命令和环境。
常用命令
列出文件和文件夹:
ls
创建文件夹
mkdir folderName
删除文件夹
rmdir folderName # 只适用于空文件夹
rm -r folderName # 删除非空文件夹及其内容
复制文件:
cp sourcePath destinationPath
移动文件:
mv sourcePath destinationPath
查看文件内容:
cat filename