如何git-cherry-pick仅更改某些文件?

问题描述 投票:465回答:10

如果我想要合并到Git分支中,那么只对某个特定提交中更改的某些文件进行了更改,其中包括对多个文件的更改,如何实现?

假设名为stuff的Git提交已对文件ABCD进行了更改,但我想仅将stuff的更改合并到文件AB。这听起来像git cherry-pick的工作,但cherry-pick只知道如何合并整个提交,而不是文件的子集。

git github cherry-pick
10个回答
575
投票

我会用cherry-pick -n--no-commit)来做这件事,它允许你在提交之前检查(并修改)结果:

git cherry-pick -n <commit>

# unstage modifications you don't want to keep, and remove the
# modifications from the work tree as well.
# this does work recursively!
git checkout HEAD <path>

# commit; the message will have been stored for you by cherry-pick
git commit

如果绝大多数修改都是您不想要的,而不是检查单个路径(中间步骤),您可以重置所有内容,然后添加您想要的内容:

# unstage everything
git reset HEAD

# stage the modifications you do want
git add <path>

# make the work tree match the index
# (do this from the top level of the repo)
git checkout .

2
投票

将分支合并为新分支(压缩)并删除不需要的文件:

git checkout master
git checkout -b <branch>
git merge --squash <source-branch-with-many-commits>
git reset HEAD <not-needed-file-1>
git checkout -- <not-needed-file-1>
git reset HEAD <not-needed-file-2>
git checkout -- <not-needed-file-2>
git commit

112
投票

其他方法对我不起作用,因为提交对很多其他文件有很多更改和冲突。我想出的只是简单

git show SHA -- file1.txt file2.txt | git apply -

它实际上并不是add文件或为您做一个提交,所以你可能需要跟进它

git add file1.txt file2.txt
git commit -c SHA

或者如果你想跳过添加,你可以使用--cached参数来git apply

git show SHA -- file1.txt file2.txt | git apply --cached -

59
投票

我通常使用-p标志与另一个分支的git checkout,我觉得比我遇到的大多数其他方法更容易和更细化。

原则上:

git checkout <other_branch_name> <files/to/grab in/list/separated/by/spaces> -p

例:

git checkout mybranch config/important.yml app/models/important.rb -p

然后,您会得到一个对话框,询问您在“blob”中需要哪些更改,这几乎可以解决每一段连续代码更改,然后您可以为每个代码块发出y(是)n(No)等信号。

-ppatch选项适用于git中的各种命令,包括git stash save -p,它允许您从当前工作中选择要存储的内容

我有时使用这种技术,当我做了很多工作,并希望将它分离出来并使用git add -p提交更多基于主题的提交并选择我想要的每个提交:)


41
投票

也许这种方法优于Jefromi's answer的优势在于你不必记住git reset的哪种行为是正确的:)

 # Create a branch to throw away, on which we'll do the cherry-pick:
 git checkout -b to-discard

 # Do the cherry-pick:
 git cherry-pick stuff

 # Switch back to the branch you were previously on:
 git checkout -

 # Update the working tree and the index with the versions of A and B
 # from the to-discard branch:
 git checkout to-discard -- A B

 # Commit those changes:
 git commit -m "Cherry-picked changes to A and B from [stuff]"

 # Delete the temporary branch:
 git branch -D to-discard

25
投票

Cherry pick是从特定的“提交”中选择更改。最简单的解决方案是选择要使用的某些文件的所有更改

 git checkout source_branch <paths>...

例如:

$ git branch
* master
  twitter_integration
$ git checkout twitter_integration app/models/avatar.rb db/migrate/20090223104419_create_avatars.rb test/unit/models/avatar_test.rb test/functional/models/avatar_test.rb
$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   new file:   app/models/avatar.rb
#   new file:   db/migrate/20090223104419_create_avatars.rb
#   new file:   test/functional/models/avatar_test.rb
#   new file:   test/unit/models/avatar_test.rb
#
$ git commit -m "'Merge' avatar code from 'twitter_integration' branch"
[master]: created 4d3e37b: "'Merge' avatar code from 'twitter_integration' branch"
4 files changed, 72 insertions(+), 0 deletions(-)
create mode 100644 app/models/avatar.rb
create mode 100644 db/migrate/20090223104419_create_avatars.rb
create mode 100644 test/functional/models/avatar_test.rb
create mode 100644 test/unit/models/avatar_test.rb

来源和完整解释http://jasonrudolph.com/blog/2009/02/25/git-tip-how-to-merge-specific-files-from-another-branch/

更新:

使用此方法,git将不会合并文件,它将覆盖目标分支上执行的任何其他更改。您需要手动合并更改:

$ git diff HEAD文件名


11
投票

使用git merge --squash branch_name这将获得来自其他分支的所有更改,并将为您准备一个提交。现在删除所有不需要的更改并保留所需的更改。并且git不会知道有合并。


10
投票

我会挑选一切,然后这样做:

git reset --soft HEAD^

然后我会恢复我不想要的更改,然后进行新的提交。


8
投票

情况:

你在你的分支上,让我们说master,你有任何其他分支的提交。您必须从该特定提交中仅选择一个文件。

该方法:

第1步:签出所需的分支机构。

git checkout master

第2步:确保已复制所需的提交哈希。

git checkout commit_hash path\to\file

第3步:您现在可以在所需分支上更改所需文件。您只需要添加并提交它们。

git add path\to\file
git commit -m "Your commit message"

4
投票

我找到了另一种方法来防止任何冲突合并樱桃采摘哪种IMO易于记忆和理解。既然你实际上不是挑选提交,而是其中的一部分,你需要首先拆分它,然后创建一个适合你需要的提交并挑选它。

首先从要分割的提交中创建一个分支并将其签出:

$ git checkout COMMIT-TO-SPLIT-SHA -b temp

然后恢复以前的提交:

$ git reset HEAD~1

然后添加您想要挑选的文件/更改:

$ git add FILE

并提交它:

$ git commit -m "pick me"

注意提交哈希,让我们称之为PICK-SHA并返回主分支,例如强制结账:

$ git checkout -f master

和樱桃 - 选择提交:

$ git cherry-pick PICK-SHA

现在你可以删除临时分支:

$ git branch -d temp -f
© www.soinside.com 2019 - 2024. All rights reserved.