gpt4 book ai didi

git - 解决冲突后如何 'git add' 所有已解决的文件

转载 作者:行者123 更新时间:2023-12-03 14:19:28 24 4
gpt4 key购买 nike

因此,时不时发生的一件事是:

  • 做一个 git merge <some-branch>
  • 有多个冲突
  • 使用文本编辑器手动解决这些冲突
  • git 添加所有单独的文件

  • 我想问一下这是最后一步。我知道我可以做 git add . ,但我可能有一些松散的文件,我不想将它们添加到版本控制中。

    是否有命令、别名或您知道的某种方法来仅添加以前冲突的文件?

    最佳答案

    如果您有一些不想添加的文件,但没有任何此类不冲突的更改,那么您可以使用 git add --update :

    git add -u .

    来自 git-add(1) :

    -u, --update

    Update the index just where it already has an entry matching <pathspec>. This removes as well as modifies index entries to match the working tree, but adds no new files.

    If no <pathspec> is given when -u option is used, all tracked files in the entire working tree are updated (old versions of Git used to limit the update to the current directory and its subdirectories).

    关于git - 解决冲突后如何 'git add' 所有已解决的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24940225/

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