How to cherry-pick only changes to certain files?
Asked Answered
M

15

892

If I want to merge into a Git branch the changes made only to some of the files changed in a particular commit which includes changes to multiple files, how can this be achieved?

Suppose the Git commit called stuff has changes to files A, B, C, and D but I want to merge only stuff's changes to files A and B. It sounds like a job for git cherry-pick but cherry-pick only knows how to merge entire commits, not a subset of the files.

Mylan answered 19/4, 2011 at 13:22 Comment(1)
If git gui is available, then I do it like Cascabel. If not, then Tyrone Wilson's way is good for fine granular selection of changes.Hers
P
1003

I'd do it with cherry-pick -n (--no-commit) which lets you inspect (and modify) the result before committing:

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

If the vast majority of modifications are things you don't want, instead of checking out individual paths (the middle step), you could reset everything back, then add in what you want:

# 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 .
Prelacy answered 19/4, 2011 at 14:4 Comment(16)
In addition to git checkout . I would recommend also git clean -f to remove any new but unwanted files introduced by the cherry-picked commit.Arrhenius
Additional note for the latter method: I use git add -p which lets you decide interactively which changes you want to add to the index per fileBillboard
This is not so great in the case that the cherry-picked commit doesn't apply to the current working copy because it's so different, but that one file would apply cleanly.Lycanthropy
for sourcetree users it's possible to add custom action to cherry pick without commitSalenasalene
You can also unstage selectively with git reset -p HEAD. It's the equivalent of add -p but very few know that it exists.Dispersal
@rlat good point, but if any of those files are in new directories, you'll need git clean -rf instead.Taryntaryne
Very useful trick. I've put it in a gist in case someone needs it as a quick script gist.github.com/PiDayDev/68c39b305ab9d61ed8bb2a1195ee1afcBeadle
This doesn't seem to preserve authorship (at all). In some cases that won't matter, in other cases it will.Periphery
To those of you git beginners getting here while trying to learn: you need to be on the target branch when you enter the git cherry-pick command, and <commit> is the short or long hash of the source commit - because I know that a few years ago I had many "where do I need to be to do this?" kind of problems with git. Also if you want to add a note into the commit message about this file having been cherry-picked, use git cherry-pick -xn instead of just -n.Versatile
Awesome! Thanks for this tip. All these years of using git and I never knew about the --no-commit option.Bethany
Thanks, your answer actually made me learn something about Git :+1:Fecit
When I do this, git commit opens an editor with an empty commit message because git reset HEAD deletes .git/MERGE_MSG. I ended up using git commit -C <commit> in order to preserve the original commit message.Confrere
Instead of git clean -f, I use git clean -fd. The d means: Remove untracked directories in addition to untracked files. If an untracked directory is managed by a different Git repository, it is not removed by default. Use -f option twice if you really want to remove such a directory.Godinez
I've successfully used a variant of the above that retains the original commit metadata and works well in case there are files to exclude that would lead to merge conflicts. git cherry-pick <commit-id> # assuming this fails with merge conflicts git reset <files-or-dirs-to-exclude> git cherry-pick --continue git checkout -- <files-or-dirs-to-exclude> ```Ypsilanti
-n did it for me. When picking a commit from another branch, I have noticed that a regular cherry-pick would pick files from unwanted preceding branch commits into the history, they would later appear as deletions when you modify such a file.Ternion
Works but I had to use the -m 1 option of git cherry-pickRigby
U
274

The other methods didn't work for me since the commit had a lot of changes and conflicts to a lot of other files. What I came up with was simply

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

It doesn't actually add the files or do a commit for you so you may need to follow it up with

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

Or if you want to skip the add you can use the --cached argument to git apply

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

You can also do the same thing for entire directories

git show SHA -- dir1 dir2 | git apply -
Unicellular answered 22/4, 2015 at 5:12 Comment(16)
Interesting method, thanks. But doesn't show SHA -- file | apply basically do the same as checkout SHA -- file as in Mark Longair's answer?Mylan
Nope, checkout SHA -- file will checkout exactly the version at SHA, while show SHA -- file | apply will apply only the changes in SHA (just like cherry-pick does). It matters if (a) there are more than one commit changing the given file in the source branch, or (b) there is a commit changing the file in your current target branch.Unicellular
Simple, precise, and beautiful; this is the best answer. Exactly what I've been looking for :-)Overword
Just found another great use for this: selective revert, for when you only want to revert one file (since git revert undoes the entire commit). In that case just use git show -R SHA -- file1.txt file2.txt | git apply -Unicellular
I used git diff instead of git show: git diff SHA -- file1.txt file2.txt | git apply -Padua
@RoeiBahumi that has quite a different meaning. git diff SHA -- file1.txt file2.txt | git apply - means apply all the differences between the current version of the file and the version at SHA to the current version. In essence it is the same as git checkout SHA -- file1.txt file2.txt. See my earlier comment for why that is different to what the git show version.Unicellular
In case you have to resolve conflicts, use git apply -3 - instead of just git apply -, then if a conflict occurs, you can use your standard conflict resolution technique, including using git mergetool.Rashida
This answers the OP's question in the most direct way. Thanks!Lycanthropy
Really great answer :) Apart from adding -3, one caveat is git will complain if you try this with removal of binary files, for reasons I'm not quite clear on. However, that's very easy & quick to do manually.Sericin
note that before committing you have to do a git add cherry-picked files. I use --cached to git apply to bypass that, make sure you have added your files to the index.Embroideress
@Embroideress that's definitely worth noting - I've added it to the answer. Thanks!Unicellular
I feel like this is the most clean approach to the problem. However, git config settings may interfere with this. I had to add the arguments --src-prefix=a/, --dst-prefix=b/ and --no-color to git show for this to work. Otherwise, git apply could not interpret the input (which contained colour escape codes). Probably, this is just because I am using a somewhat weird git configuration. (I am using diff.noprefix=true and color.ui=always).Pericarditis
@Pericarditis Those certainly will cause havok with doing this, and in a few other git based scripts I would expect. I'll add a bit to the answer outlining this, but I'd love to know why you use those settings.Unicellular
@MichaelAnderson The diff.noprefix=true setting is neat because I often find myself doing git diff and then double clicking the name of the file in order to copy it and open it in a text editor. If the name is preceded by a a/ prefix, I need to remove that part, which is tedious. For the coloring part, I use cat as core.pager because most often, that seems sufficient for me. But if I ever want to pipe git diff to more, I want the colouring to be preserved.Pericarditis
I used this answer just fine a week ago, now it says unrecognized input, can anyone help me ?Homey
@Homey I'd look at the output of the part of the command before the | symbol and see if it makes sense as a diff.Unicellular
P
178

I usually use the -p flag with a git checkout from the other branch which I find easier and more granular than most other methods I have come across.

In principle:

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

example:

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

You then get a dialog asking you which changes you want in "blobs" this pretty much works out to every chunk of continuous code change which you can then signal y (Yes) n (No) etc for each chunk of code.

The -p or patch option works for a variety of commands in git including git stash save -p which allows you to choose what you want to stash from your current work

I sometimes use this technique when I have done a lot of work and would like to separate it out and commit in more topic based commits using git add -p and choosing what I want for each commit :)

Poilu answered 2/3, 2016 at 9:14 Comment(7)
I regularly use git-add -p, but I didn't know git-checkout also has a -p flag - does that fix the merging problems the non--p answer has?Mylan
@TobiasKienzler, I guess it would if you don't choose lines that are going to conflict but there would still be code to untangle if your file has changed too much.Poilu
at least -p would allow for a manual edit for such a conflicting section, which cherry-pick would probably also yield anyway. I'll test this next time I need it, definitely an interesting approachMylan
One of the two best answers that don't kill concurrent changes to the branches.Reichenberg
See this answer for how to select which hunks to apply: https://mcmap.net/q/12385/-what-does-each-of-the-y-n-q-a-d-k-j-j-g-e-stand-for-in-context-of-git-p The 's' option in particular was very helpful.Kneedeep
git reset -p HEAD also allows the -p which can be quit handy when you only want to remove some patches from the index.Dispersal
What is interesting here is that you can use glob names for "files to grab" like in 'foo' and that will be expanded in context of the other branch - that way you can easily point to a file that doesn't exist in the current branch/working tree (btw, it doesn't work without -p).Kinesiology
C
64

The situation:

You are on your branch, let's say master and you have your commit on any other branch. You have to pick only one file from that particular commit.

The approach:

Step 1: Checkout on the required branch.

git checkout master

Step 2: Make sure you have copied the required commit hash.

git checkout commit_hash path\to\file

Step 3: You now have the changes of the required file on your desired branch. You just need to add and commit them.

git add path\to\file
git commit -m "Your commit message"
Comus answered 7/8, 2018 at 5:45 Comment(4)
Awesome! Also worked for all changes in a directory with \path\to\directory\ for meRobeson
Overwrites any changes made to the target branch.Falchion
This works if that commit is exactly the file you need (that's what checkout gets you), but does not work if you have any changes (on master in your example) to that file (which is what using cherry-pick usually solves), as it'll completely replace the file instead of just pick the changes into it.Crowe
If you've just committed to the wrong branch, this solution by @Comus is simpler than using a cherry-pick to pull it into the correct branch, at least for me.Pincince
R
53

Perhaps the advantage of this method over Jefromi's answer is that you don't have to remember which behaviour of git reset is the right one :)

 # 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
Rubiaceous answered 19/4, 2011 at 13:30 Comment(6)
thanks for your answer. Now that inspired me to think, why not skip the cherry-pick and directly use git checkout stuff -- A B? And with git commit -C stuff the commit message would remain the same as wellMylan
@Tobias: That would work only if the files modified on stuff have not been modified on your current branch or anywhere between the common ancestor of HEAD and stuff and the tip of stuff. If they have, then cherry-pick creates the correct result (essentially the result of a merge), while your method would throw away the changes in the current branch, and keep all of the changes from the common ancestor up to stuff - not just the ones in that single commit.Prelacy
@Fecit Kienzler: I was assuming that your starting point was sufficiently different from the parent of stuff that the result of the cherry pick would leave A and B with different content from their content in the commit stuff. However, if it would just be the same, you're right - you could just do as you say.Rubiaceous
@Jeromi, @Mark: thanks for your feedback, in my case I'm treating branches with entirely disjunct files which led me to my suggestion. But indeed I'd had run into trouble with it sooner or later, so thank you for bringing this upMylan
I think my answer in this other thread may be what you're after.Glochidiate
git checkout to-discard -- A B will overwrite the current A and B, or merge with the current A and B?Eridanus
I
49

Cherry pick is to pick changes from a specific "commit". The simplest solution is to pick all changes of certain files is to use

 git checkout source_branch <paths>...

In example:

$ 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

Sources and full explanation http://jasonrudolph.com/blog/2009/02/25/git-tip-how-to-merge-specific-files-from-another-branch/

UPDATE:

With this method, git will not MERGE the file, it will just override any other change done on the destination branch. You will need to merge the changes manually:

$ git diff HEAD filename

Interim answered 4/12, 2013 at 13:16 Comment(4)
I thought so too, but this fails horribly if the files have changed on both branches since it discards the changes of your current branchMylan
You are right, it is a must to clarify that this way git doesn't MERGE, it just override. You can then do "git diff HEAD filename" to see what changed and do the merge manually.Interim
This worked well for me. A colleague had made a comment on a pull request, that some changes should be split into a separate request in order to separate the issues clearly. Your method worked well for this case.Hawes
You can also use it to grab the specific file(s) from a particular commit git checkout e0032947bd37f44044962ae2f7229d339944f83c example.txtChromate
G
36

For the sake of completness, what works best for me is:

git show YOURHASH --no-color -- file1.txt file2.txt dir3 dir4 | git apply -3 --index -

It does exactly what OP wants. It does conflict resolution when needed, similarly how merge does it. It does git add but not git commit your new changes, so check your git status.

Gadgeteer answered 25/10, 2019 at 10:1 Comment(4)
that's beautifulWildfowl
Thanks! Can you mention what the 3 is for (... git apply -3 --index ...)?Lohman
-3 signifies to use a "3-way merge fallback". Which in practice means git can insert familiar conflict markers or it can bypass a change that has been already applied. The default git apply behavior is too strict for my taste, it refuses to apply the entire patch on a slightest discrepancy.Gadgeteer
you saved me. thanks.Jasso
L
22

Sometimes it could be easier to use checkout to bring specific files from a commit. In my opinion it gives you more control.

I would do it like this:

git checkout <branch|hash> -- path/to/file1 path/to/filen

Then unstage the necessary changes to adapt the code and test it before do commit. If everything works as expected, then commit.

Lure answered 20/11, 2021 at 19:49 Comment(1)
Identical to multiple existing answers.Dubbing
K
18

I would just cherry-pick everything, then do this:

git reset --soft HEAD^

Then I would revert the changes I don't want, then make a new commit.

Kakemono answered 11/8, 2014 at 21:20 Comment(1)
This is not efficient if the cherry-pick would cause lots of conflicts on files you don't need.Scrappy
M
12

Use git merge --squash branch_name this will get all changes from the other branch and will prepare a commit for you. Now remove all unneeded changes and leave the one you want. And git will not know that there was a merge.

Modernistic answered 30/10, 2017 at 17:2 Comment(2)
Thanks, I didn't know about that merge option. It's a viable alternative if you want to cherry-pick most of an entire branch (but in contrast to cherry-pick it won't work if there is no common ancestor)Mylan
"git will not know that there was a merge"? I thought git knew everything? :\Weldon
F
7

I found another way which prevents any conflicting merge on cherry-picking which IMO is kind of easy to remember and understand. Since you are actually not cherry-picking a commit, but part of it, you need to split it first and then create a commit which will suit your needs and cherry-pick it.

First create a branch from the commit you want to split and checkout it:

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

Then revert previous commit:

$ git reset HEAD~1

Then add the files/changes you want to cherry-pick:

$ git add FILE

and commit it:

$ git commit -m "pick me"

note the commit hash, let's call it PICK-SHA and go back to your main branch, master for example forcing the checkout:

$ git checkout -f master

and cherry-pick the commit:

$ git cherry-pick PICK-SHA

now you can delete the temp branch:

$ git branch -d temp -f
Fai answered 15/2, 2017 at 21:57 Comment(0)
E
6

You can use:

git diff <commit>^ <commit> -- <path> | git apply

The notation <commit>^ specifies the (first) parent of <commit>. Hence, this diff command picks the changes made to <path> in the commit <commit>.

Note that this won't commit anything yet (as git cherry-pick does). So if you want that, you'll have to do:

git add <path>
git commit
Epinephrine answered 17/9, 2019 at 13:0 Comment(1)
this way you can specify any valid range if the resulting doesn't apply, you can opt-in to 3-way merge with -3 or --3way switch: ... | git apply --3wayAmorita
P
2

Merge a branch into new one (squash) and remove the files not needed:

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
Pilcher answered 11/4, 2018 at 14:4 Comment(0)
E
2

Automating a bit more:

#!/usr/bin/env bash

filter_commit_to_files() {
    FILES="$1"
    SHA="$2"
    git show "$SHA" -- $FILES | git apply --index -
    git commit -c "$SHA"
}

Example usage:

filter_commit_to_files "file1.txt file2.txt" 07271c5e

I define it via copy and paste from here right into my shell. You don't need a here document.

Esau answered 3/3, 2022 at 22:27 Comment(0)
L
0

Checkout with Patch Flag

An easy way to accomplish what you are describing is through a checkout --patch. Modify the four variables I provided at the top. The script does the following:

  1. Clones the branch that contains your commit ( source branch )
  2. Checkout the branch you wish to move the file to ( target branch )
  3. Checkout the source branch at desired commit revision, supply the patch flag and relative location to the file as a parameter.
  4. Add, commit, push

This has always been the easiest method for me. Step #3 does create an interactive shell though, but you can default option the entire thing if you want to clobber the destination.

source_branch=branch_with_file_you_want
destination_branch=file_go_here
rev=757c47d4
relative_file_path=structures/serializers/node.py
message="Patching a file from $source_branch to $destination_branch"

git clone https://github.com/yourepo/app.git -b $source_branch $source_branch
cd $source_branch
git checkout $destination_branch
git checkout $rev --patch $source_branch $relative_file_path
git add $relative_file_path
git commit -m "$message"
git push

If you're remote is GitLab you can use git push -o merge_request.create if you need an MR

Lewison answered 3/9, 2022 at 6:54 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.