How to cherry pick only changes for only one file, not the whole commit

Git

Git Problem Overview


I need to apply changes introduced in one branch to another branch. I can use cherry pick to do that. However, in my case I want to apply changes which are relevant only for one file, I don't need to cherry pick whole commit. How to do that?

Git Solutions


Solution 1 - Git

You have different options based on what you want to achieve:

If you want the contents of the file to be the same as on the target branch, you can use git checkout <branch> -- <filename>. This will however not “cherry-pick” the changes that happened in a single commit, but just take the resulting state of said file. So if you added a line in a commit, but previous commits changed more, and you only want to add that line without those other changes, then a checkout is not what you want.

Otherwise if you want to apply the patch introduced in a commit to only a single file, you have multiple options. You could run git cherry-pick -n, i.e. without committing it, edit the commit (for example reset all files using git reset -- . and only add the file you actually want to change using git add <filename>). Or you could create the diff for the file and apply the diff then:

git diff <branch>^..<branch> -- <filename> | git apply

Solution 2 - Git

Create a patch file and apply it.

git diff branchname -- filename > patchfile
git apply patchfile

EDIT:

Since you need to take the changes from a commit, create the patch like this:

git show sha1 -- filename > patchfile

Solution 3 - Git

Another handy thing to do is get the patch locally and then use:

git checkout {<name_of_branch>, commit's SHA} <path to the file> 

That's not a cherry-picking though.

Solution 4 - Git

Git has everything ready :)

Just use git checkout <sha> <path-to-file>

Solution 5 - Git

git checkout the_branch_with_the_change the/path/to/the/file/you/want.extension

this works if you want a single file from another branch to be copied to the current working branch

Solution 6 - Git

You can try doing this:

git show COMMIT_ID -- path/to/specific-file | git apply

For example:

git show 3feaf20 -- app/views/home/index.html | git apply

Solution 7 - Git

Use -n option to avoid commit.

git cherry-pick -n <target>

Now do the commit by selecting desired files.

git commit -- file1 file2

Solution 8 - Git

This is what are you looking for:

git checkout target-branch sha1 path/to/file

sha1 is optional

Solution 9 - Git

What I tend to do is to use git ls-tree

just do:

git ls-tree -r <commit-id> |grep 'your filename'
# there will be output that shows a SHA1 of your file
git show ${SHA1 of your file} > 'your filename'

This will print all filenames matching your grep and gives SHA1 keys of the files in the commit.

Git show can be used on files outside of your branch as well. using > from your shell to pipe the output into a file gives you the result you are looking for.

Solution 10 - Git

git reset HEAD~1

moves the files into pre-commit stage

git stash

removes from memory

Now your branch is pretty clean (reverted to previous commit)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionashimView Question on Stackoverflow
Solution 1 - GitpokeView Answer on Stackoverflow
Solution 2 - GitSaileshView Answer on Stackoverflow
Solution 3 - Git0x90View Answer on Stackoverflow
Solution 4 - GitRaghotham SView Answer on Stackoverflow
Solution 5 - GitIsmail IqbalView Answer on Stackoverflow
Solution 6 - Gitarashb31View Answer on Stackoverflow
Solution 7 - GitKRoyView Answer on Stackoverflow
Solution 8 - GitRuslan OsipovView Answer on Stackoverflow
Solution 9 - GitAlexander OhView Answer on Stackoverflow
Solution 10 - GitVenkataView Answer on Stackoverflow