基础
主流框架
轻应用框架
CSS 预处理器
构建工具
代码管理
包管理
外观
约 85 字小于 1 分钟
2025-03-13
主要作用
移除工作区和暂存区的文件
git rm [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--pathspec-from-file=<file> [--pathspec-file-nul]] [--] [<pathspec>…]
移除a.txt
git rm a.txt
强制移除a.txt
git rm a.txt -f
e7112