0
votes
1answer
15 views

Git diff creating empty patch when using external difftool

I'm trying to create a diff file (patch) between two commits. I'm trying the command git diff 62fe9db 7661a06 > ~/Desktop/patch but the file created is empty. When I run the above command, ...
0
votes
1answer
45 views

How can I apply a TortoiseSVN generated patch to a git repository in Windows?

I was working on a project that was in subversion, but then it got migrated to git before I managed to commit the latest changes. I created a patch file using TortoiseSVN, but now I don't know how to ...
2
votes
1answer
29 views

Combining 2 patch files

I'm new to Git, and I am trying to contribute to an open source repo using patch files. I created a patch for one class, then later on I needed to modify something else in the same class, so I went ...
0
votes
1answer
27 views

git apply three way merge

I have a question about applying patch which contains conflicts with working copy. I am a bit confused by git apply as it sometimes applies patch and creates conflict markers and sometimes it does it ...
0
votes
2answers
22 views

git: update a php-script but keep own changes

I'm tracking my changes on a PHP-software with git. I have only a master branch and about 10 commits, the first commit was the original version 1.0 of the software. Now I saw, that the owner of the ...
0
votes
2answers
27 views

How to apply a Git patch to a file with a different name and path?

I have two repositories. In one, I make changes to file ./hello.test. I commit the changes and create a patch from that commit with git format-patch -1 HEAD. Now, I have a second repository that ...
0
votes
0answers
25 views

git : How to create patches series without merge commits to one file if commit message the same

I'd tried to create patches for specific directory under GIT. git format-patch -o ../merge2 c872022f8^..HEAD app/my/dir Everything is ok but some commits which consecutive and has the same commit ...
3
votes
2answers
345 views

git create patch with diff

I tried doing git diff 13.1_dev sale_edit > patch.diff Then I tried doing git apply patch.diff in another branch, but I got patch does not apply. How do I create patch files from diffs that I ...
0
votes
1answer
22 views

Modifying committed patch in git

I applied a patch to my repo which accidentally contained trailing spaces. When I do a "git rebase master", git complains about the trailing spaces. How can I fix the patch to eliminate the trailing ...
0
votes
0answers
142 views

git apply : error trailing whitespace

Lately, I've been playing a little bit with git. I'm trying to simulate to apply a patch to my master branch, this patch comprehends a commit where I added some comments to a java operation. I ...
2
votes
1answer
39 views

Creating a patch with Git - keep only the basename of the filepath?

My situation is I'm making changes to an installed Drupal module which I want to commit back to the project (yay for open source). My problem is this: diff --git ...
2
votes
2answers
75 views

how to apply a git patch as if the author committed to my repo?

Lets suppose there is a central repository where commits from satellite ones are pushed some time. Developer A makes some commits on his repo while B makes some on his own too. Now, A wants to ...
2
votes
1answer
76 views

save git stash revision long term

How do I "Save" a git stash and store it away long terms such that I can access it in the future (perhaps save it in some patch file) even after the stash itself is cleared. IE. how do I save a ...
1
vote
1answer
95 views

git-apply fails mysteriously, how do I troubleshoot/fix?

I'm currently trying to to code-style checking on the PRs of a (github) repository, and I want to deliver patches to the submitters with which they can easily fix the codestyle. To this end, I'm ...
0
votes
2answers
95 views

Apply patches created with git log -p

I have a file of patches (all of which apply to a single file) generated with git log -p file-of-interest.txt >patches.txt Now I want to apply these patches in another repo, but when I try git ...
2
votes
1answer
129 views

Creating a git diff from nothing

I am trying to create a patch file to be used via reviewboard. It will be the initial patch. diff -ruN --exclude=.git empty_dir working_dir > mypatch_00.patch works but I am getting a "The ...
2
votes
2answers
166 views

How to create git-compatible patch from svn revision, that contains binary file changes?

I want to apply diff from SVN revision to some directory. But that diff contains changes to binary files (.png images). I'm trying to use git-apply, like this: svn diff --force --git -r 1:2 ...
2
votes
2answers
110 views

Git format-patch vs git log -p

I would like to retrieve a list of commits as patches and then try to apply them to another repo in which I stored a very close project to the one from wich I want to retrieve the patch : how can I in ...
0
votes
1answer
251 views

How to create a patch with git-extensions

Is there a way to create a patch from selected commits in the user interface from git-extensions. I know how to export a patch trough command line but I wonder if there is a similar functionality ...
8
votes
1answer
249 views

git checkout --patch by words?

We have a project where the files contain unfortunately long lines, with no possibility of shortening them. We could streamline our workflow significantly if we could use git checkout --patch also ...
1
vote
0answers
172 views

git apply fails when adding a binary file with `-p2` flag?

I've create a patch file which includes a binary file using: $ git format-patch --stdout myref^ > patch.diff But when I try to apply it with: $ git apply -p2 patch.diff I get the error: ...
1
vote
2answers
45 views

Do I have to give Git patch a reasonable name?

I create patches to store temporary fixes because I don't want to check them into repository. I use command like git format-patch --full-index HEAD~1..HEAD to create patches. But when new commits are ...
0
votes
2answers
67 views

Apply Chunk/Revert Chunk not working on Qt Creator on Windows

I have git installed, and from Tools->Git->Diff, I can select Apply Chunk or Revert Chunk On Linux it works, but on Windows it gives me Unable to launch 'patch': Process failed to start: No such ...
1
vote
2answers
214 views

How to make dependencies between merged patch and before merged patch in gerrit?

I have two patches on gerrit and I would like to make the unmerged depened on the merged patch. Both are uploaded to gerrit yet. How can I do it? Is it possible at all? can I do it through gerrit? ...
0
votes
2answers
59 views

How to turn a git repository into a single .diff file that can be applied with patch

I have multiple git repositories and would like to generate a big .diff file for each repository. This .diff patch would then be applied by a customer using something like the 'patch' utility to ...
0
votes
1answer
88 views

How to check out and apply java patches from eclipse git repository?

I found a patch, which solves a issue, I run into. This Patch is hosted on a GIT repository On Windows I tried to check out the patches by using MsGit, TortoiseGit git fetch ...
2
votes
1answer
72 views

GIT stash apply reverse doesn't work with js and rb files

I'm trying to figure out why GIT does not apply reverse patch on javascript and ruby files, but does it on php files. My steps are: ...modifying some php, ruby and js files... git stash #saving ...
1
vote
0answers
111 views

git send-email to not alter commit dates from git format-patch

Question: Is there a way to tell git send-email to honor git format-patch dates? Better still, is there way to not regard the mail date and commit date as distinct? Observations: this is my ...
1
vote
2answers
516 views

Using `git show` to create and apply patches spanning multiple commits

Lately I've been using git show <hash> to create diffs for later reference because it's easier to type than git diff <hash>~ <hash> and it shows the commit information (timestamp, ...
2
votes
0answers
126 views

msysgit git-am can't apply it's own git format-patch sequence

I'm using msysgit git on windows to operate on central svn repository. I'm using git as I want to have it's awesome little local branches for everything and rebasing on each other. I also need to ...
1
vote
1answer
81 views

Kernel source: Submitting patch

I am trying to work on Linux stock kernel (linus tree). But due to some limitation on my Linux box, I cannot pull the tree through git. So I am downloading the latest rc candidate source archive from ...
0
votes
1answer
73 views

git format-patch query

I am trying to create a patch through git between master and my working branch. I used following command: git format-patch master..workingbr But it is creating incremental patches for all the ...
11
votes
1answer
1k views

What does “1 line adds whitespace errors” mean when applying a patch?

I'm editing some markdown files of a cloned remote repository, and wanted to test creating and applying patches from one branch to another. However, every time I make any change at all, I get the ...
2
votes
3answers
1k views

What is the difference between git am and git apply?

Both git am and git apply can be used to apply patches. I fail to see the difference. UPDATE I see a difference now: git am automatically commits whereas git apply only touches the files but doesn't ...
0
votes
1answer
45 views

What is the easiest way to create a patch from a commit that can be applied to a different folder structure

Suppose I have this folder structure: /projectroot/foo/bar/subfoo/foo.txt Now I change something in foo.txt a make a commit. I have another repository with the exact same foo.txt but the folder ...
0
votes
1answer
254 views

How can I create a patch that spans commits using Sourcetree?

I observe that when I "Create a patch", the dialog creates the patch that is "to" the commit I selected "from" it's predecessor. In the dialog, I can tantalisingly select two separate commits and the ...
0
votes
1answer
80 views

Git: Patching changes made in a unrelated repo

Let me explain the problem with a example: I was working in my old project repo OlDRepo/libs/graphics I made a number of changes in graphics and made many commits. Now, I started working with a new ...
1
vote
1answer
910 views

apply svn patch to git repository

Ok, I've tried all answers i could find on stackoverflow, but apparently none seem to be able to solve my problem. I want to apply a patch made by SVN to a git repository. Apparently the easiest way ...
0
votes
1answer
48 views

git revert back to a specific commit that is already in the branch history but was undone

Say I have A--B--C--D--E--F--G on commit C there is "horizontal scrolling feature". Later we changed our mind and on commit D there is "vertical scrolling". Then E,F,G are back-end DB migration ...
1
vote
3answers
128 views

How do I apply a patch visually from a foreign repo into mine?

A colleague sent me a patch from his git repo. Since it's not a clone, his index entry contains hashes that are not known in my repo. Sample: index 20589f5..bbdd152 100644 20589f5 exists in his ...
0
votes
1answer
78 views

Under what exact conditions does a patch fail to apply?

In the context of a patch both produced and applied by git (i.e. unified diff format)... What is required for a patch to apply cleanly? Does the context have to match exactly? What happens if a ...
2
votes
1answer
52 views

How can i generate a patch file from all commits in a local branch (GIT)?

I would like to generate a patch with all commits from a local branch. Without Comparing to the master. (because a part of the commits are already merged with the master.)
2
votes
1answer
117 views

Who gets credit for a hand-edited patch file?

A follow-up question to my answer about editing GitHub pull-requests asked whether editing the patch file directly before applying it would result in taking credit for the original author's work. ...
0
votes
1answer
97 views

Take a patch of working directory changes in git

How to take a patch of working directory changes in git directory. I know the method for taking the patch in SVN, but in git i don't know how to take it. pls help
1
vote
1answer
268 views

Git: Generate patch of all commits made on “feature” branch without referring to commit IDs

We maintain two versions of our application in two branches: free and master (master being the premium version of our application). These branches are fairly similar but the master branch has a few ...
3
votes
2answers
317 views

git hunk edit mode - how to remove a '-' line?

+ bbb - aaa # --- # To remove '-' lines, make them ' ' lines (context). # To remove '+' lines, delete them. # Lines starting with # will be removed. # # If the patch applies cleanly, the edited hunk ...
0
votes
2answers
65 views

Merge two modified versions of an original string

This is related to version control, in a parallel modification situation where we do not know the exact timing of changes, so we assume that we receive two modified versions of a file at the same ...
2
votes
1answer
125 views

Maintaining multiple patches/feature branches for multiple development branches (and tags) in parallel

We have forked a project in git(hub) and want to maintain a few patches in our fork while also recreating those patches in their releases (tags) and release branches. Initial repository structure ...
1
vote
0answers
214 views

git patches won't apply

I have two repos and made a .patch file from one. Inside it the path looks like this: a/views/filename b/views/filename I made the patch file by checking out the branch and running git format-patch ...
0
votes
3answers
151 views

Merging non-git code with git based code (initial code base is the same)

I have a client site that had a singular code base. On my recent changes, I took the live copy of the website and committed it to a new GIT repository and started to do new updates to it. Now there is ...

1 2 3