gpt4 book ai didi

git - 如何仅在 Git 中存储未暂存的更改?

转载 作者:IT王子 更新时间:2023-10-29 01:16:40 24 4
gpt4 key购买 nike

我想使用这个工作流程:

  1. 进行一些更改。
  2. 将未暂存的更改保存到存储区。
  3. 用阶段性的东西做一些事情(构建、测试等)。
  4. promise 。
  5. 恢复未暂存的更改。

有没有办法完成第 2 步?

例子:

git init
echo one >file
git add file
git commit
echo two >>file
git add file
echo three >>file
git stash push
test
git commit
git stash pop

最佳答案

git stash push 有一个选项 --keep-index 可以完全满足您的需要。

因此,运行 git stash push --keep-index

关于git - 如何仅在 Git 中存储未暂存的更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7650797/

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