gpt4 book ai didi

Git 重置未暂存文件的更改

转载 作者:行者123 更新时间:2023-12-02 17:41:27 25 4
gpt4 key购买 nike

我是 git 的新手,我想知道是否可以将更改重置为未暂存的文件?例如。

  1. echo 1 > file1.txt
  2. git add file1.txt
  3. git commit -m "file1 added to repo"
  4. echo 2 > file1.txt
  5. git add file1.txt
  6. echo 3 > file1.txt

我的 repo 状态现在看起来像这样:

  1. 在 repo 中我有内容为 1
  2. 的文件
  3. 在阶段我有内容为 2
  4. 的文件
  5. 在工作目录中,我得到了内容为 3
  6. 的文件

How to reset file to point 2 (reset changes made made by command echo 3 > file2.txt)

最佳答案

使用

git clean -n

检查哪些文件将被删除,然后

git clean -f

删除未跟踪的文件

关于Git 重置未暂存文件的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20199523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com