git restore 放弃更改、取消暂存
2024-09-06
71
1. 前言
git restore 用于恢复工作树文件。应用场景: 取消暂存、放弃更改
2. 使用示例
初始化一个 git 仓库,并且完成一次提交
git init
echo Index.php >> Index.php
git add Index.php
git commit -m 'add Index.php'
修改文件内容
# 修改文件内容
echo abc >> Index.php
# 查看内容
cat Index.php
# 查看状态
git status
放弃更改
git restore Index.php
修改文件内容
# 修改文件内容
echo abc >> Index.php
# 查看内容
cat Index.php
# 提交到暂存区
git add Index.php
# 查看状态
git status
-S, --staged
取消暂存
git restore --staged Index.php
3. 命令总结
更新于:4个月前# 放弃更改
git restore <file1> <file2>
# 取消暂存
git restore --staged <file1> <file2>
# 所有文件放弃更改
git restore .
# 所有文件取消暂存
git restore --staged .
赞一波!
相关文章
- Git 常用命令总结
- git 里的gitignore不生效的解决方案
- Git 常用命令
- git clean 命令详解
- git 常用命令
- git switch 命令详解
- git rebase 命令详解
- git commit 代码提交规范
- git status 查看状态文件名乱码
- git stash 命令详解(保存开发进度)
- git fetch 命令详解
- git merge 命令详解
- .git 目录结构内容解析
- git clone 拉取远程仓库
- git tag 命令详解
- git rm 从暂存区中删除内容
- git init 初始化仓库
- git checkout 命令详解
- git help 查看命令手册
- git add 命令详解
文章评论
评论问答