从暂存区移除文件
从暂存区移除文件。
- 使用
git restore --staged <pathspec>
命令从暂存区移除文件。 <pathspec>
可以是文件名或文件通配符。
git restore --staged <pathspec>
# 示例
git restore --staged "30seconds.txt"
# 从暂存区移除文件 `30seconds.txt`
git restore --staged src/*.json
# 从暂存区移除 `src` 目录中所有扩展名为 `.json` 的文件
git restore --staged .
# 从暂存区移除所有更改