Tagged Questions
The patch tag has no wiki summary.
33
votes
4answers
10k views
How to apply `git diff` patch?
How can my client apply patch created by git diff without git installed?
I have tried to use patch command but it always asks file name to patch.
31
votes
10answers
13k views
How do I apply a diff patch on windows?
There are plenty of programs out there that can create a diff patch, but I'm having a heck of a time trying to apply one. I'm trying to distribute a patch, and I got a question from a user about how ...
24
votes
2answers
22k views
How to make svn diff produce file that patch would apply, when svn cp or svn mv was used?
The scenario is:
svn cp or mv some file
modify that file
svn diff > mypatch
On other machine (same working copy, but no changes):
Try to apply mypatch.
Fail -> tries to modify unexistant file.
...
21
votes
5answers
7k views
TortoiseHg Apply a Patch
TortoiseHg allows you to email a patch file of your changes to someone, but does it support applying patches?
If so, how do you apply a patch using TortoiseHg?
Solution
Thanks @Will Bickford for ...
19
votes
9answers
3k views
A visual patch tool for Linux
I've got a file and a patch for it. I'd like to visually apply the patch, t.i. see how the changes proposed by the patch look in context, make some corrections, and save the resulting file.
What tool ...
18
votes
5answers
8k views
How do you squash commits into one patch with git format-patch?
I've got eight commits on a branch that I'd like to email to some people who aren't git enlightened, yet. So far, everything I do either gives me 8 patch files, or starts giving me patch files for ...
12
votes
3answers
158 views
How are git patches handled in opensource projects?
This is a imaginary problem, but I'm having real problems with patches. Let's say I have an opensource project with the following git history:
A - B - C
Now if I receive two patches, C1 and C2, ...
12
votes
2answers
2k views
What is the difference between 'git format-patch and 'git diff'?
I don't see a difference between the output of 'git format-patch' and 'git diff', is there any? And won't I be able to use 'git diff' to produce a patch and then apply it using git apply?
My problem ...
12
votes
3answers
2k views
How to move certain commits to another branch in git?
The situation:
master is at X;
quickfix1 is at X + 2 commits
then i started working on quickfix2, but by accident took quickfix1 as the source branch to copy, not the master. Now
quickfix2 is at X + ...
11
votes
3answers
236 views
How to release patches for Java programs
I've recently released a cross platform Java application. For distribution we created a NSIS installer for Windows and used a DMG for Mac (that has JarBundled .app file). We also plan on creating ...
11
votes
2answers
1k views
How to prevent Vista from requiring elevation on patch.exe?
[I'm sorry that this isn't directly a programming question. But I have recently switched to a new Vista machine where I am keeping UAC enabled (please don't tell me to disable it, it's not an ...
10
votes
6answers
2k views
How does one submit a potential patch to the Linux kernel?
We have some software which relied on certain behavior from an another (very commonly used) application that has now changed, rendering our current implementation workable, but less than optimal.
We ...
10
votes
10answers
2k views
What exactly does the word Patch mean when refering to 'submitting a patch'?
What exactly does the word patch mean when refering to 'submitting a patch'?
I've seen this used a lot, especially in the open source world. What what does it mean and what exactly is involved in ...
9
votes
2answers
130 views
What is a good practise for building software patches?
I recently took charge of a software product which was evolved rather unorganized and I have established a new project structure,a source code repository, issue tracking and a buildsystem using nant ...
9
votes
3answers
412 views
Override “private” function in JavaScript
I am monkey-patching some of the jQuery's Draggable code*.
The goal is to avoid modifying the original source files and patch dynamically one of the internal functions.
The function ...
9
votes
3answers
713 views
Is there something like bsdiff/Courgette for jar files?
Google uses bsdiff and Courgette for patching binary files like the Chrome distribution. Do any similar tools exist for patching jar files?
I am updating jar files remotely over a bandwidth-limited ...
9
votes
4answers
7k views
subversion diff including new files
I have some local changes to an open source project which uses Subversion as its source control. (I do not have commit access on the original project repository.)
My change adds a file, but this ...
8
votes
7answers
603 views
Patch an application
I need to create a patching routine for my application,
it's really small but I need to update it daily or weekly
how does the xdelta and the others work?
i've read around about those but I didn't ...
8
votes
3answers
1k views
Self updating py2exe/py2app application
I maintain a cross platform application, based on PyQt that runs on linux mac and windows.
The windows and mac versions are distributed using py2exe and py2app, which produces quite large bundles ...
8
votes
1answer
3k views
How to read .rej files, i.e
I'm having trouble applying a patch to my source tree, and it's not the usual -p stripping problem. patch is able to find the file to patch.
Specifically, my question is how to read / interpret the ...
7
votes
3answers
489 views
diff'ing diffs with diff?
I need to know if the two patches are effectively the same.
I have an old patch file and new patch file created with the unix diff command. Just diff'ing the patches reports differences due to the ...
7
votes
4answers
627 views
How to deploy: database, source and binary changes in 1 patch?
I'm part of a development team that works on many CMS based projects, using systems like Joomla and Drupal.
In our development process, all of our code changes are managed inside of Git. At the end ...
7
votes
9answers
1k views
I don't “get” how a program can update itself. How can I make my software update?
Say I make an .exe file and everything is peachy. Wonderful it works.
Say I worked on a new feature on the software and I want it to be available for people who already have the older version, how ...
7
votes
6answers
3k views
Is there a way to diff files from C++?
I'm looking for a C or C++ diff library. I know I can use the Unix diff tool in combination with system or exec, but I really want a library. It would be handy if the library could perform patches ...
7
votes
2answers
3k views
How do you apply a patch to ruby on rails?
I'd like to apply the action_mailer patch mentioned in this thread but I have never applied a patch before and I'm not sure how these work:
https://rails.lighthouseapp.com/projects/8994/tickets/2263
...
7
votes
4answers
3k views
How to apply SVN diff to Git?
I have my projects in 2 repositories. One under SVN and one under Git.
Whenever I change something in SVN I want to do the same thing to the Git repository.
Say I make a change to SVN repository, ...
6
votes
2answers
362 views
Simple Virus Remover
I am trying to create a simple virus remover. The algorithm I developed is meant to:
inspect the original file and the infected file
separate the virus from the infected file
use same algorithm for ...
6
votes
1answer
224 views
Merging changesets in git for a code review
I have around 50 relevant commits on my local git repo, of this list I want to show in a code review only my commits.
But they are mixed with other people commits, and some of my commits are ...
6
votes
1answer
62 views
What is the best method to gain users and contributors for my own open source projects?
There are two questions to this:
How can I best "spread the word"
about my projects to interested users?
How can I best "spread the word" to like-minded developers?
I know this sounds easy, but it ...
6
votes
4answers
919 views
splitting up a git commit into phases: how to manually intervene?
I have a source file where 2 features have been added. In order to allow cherry-picking, I'd like to commit that in 2 phases: one for each feature. Until now, in similar situations, using git add -p ...
6
votes
2answers
3k views
Why does git am leave modified files lying around? How can I adapt my workflow to do better?
This will be a long one but I hope you could bear with me.
I am trying to use git to put my team's source code under version control. After trying to find different approaches that would work for me, ...
6
votes
7answers
202 views
What opensource projects do you support, or what keeps you from supporting projects?
I often feel like I should be contributing more to certain projects as I depend on them daily, but often feel I would mostly be getting in the way.
Do you have any projects that you are not a main ...
6
votes
3answers
878 views
How to patch on Windows?
Given a (source) patch file, what's the easiest way to apply this patch on the source files under Windows?
A GUI tool where I can visually compare the unchanged-changed source lines would be great.
5
votes
1answer
60 views
Can I import a patch without touching the working directory?
Normally, Mercurial will abort if I have a dirty working copy when I try to import a patch:
$ hg import x.patch
abort: outstanding uncommitted changes
Is it possible to import it anyway?
5
votes
2answers
355 views
Permanently reversing a patch-file
Sometimes, for whatever reason, I have to produce patch-files (under Linux) that are in the wrong direction. I know that I can deal with this by using the -R switch when applying it via patch, but it ...
5
votes
2answers
157 views
Is there a function in elisp to apply a patch to a buffer?
I am working on an emacs mode for a review tool, and want to use ediff for viewing diffs... the problem is that the review tool only yields a diff, rather than old and new files. I'd like to put the ...
5
votes
1answer
504 views
How to Prevent “svn diff” from Generating Unicode Output on Windows
On my Windows box, I tried to create a Subversion patch by using the command svn diff > my_patch.diff. The resulting file was encoded with UTF-16, rather than UTF-8 or ASCII, so when I tried to ...
5
votes
2answers
474 views
How to improve our build and deployment process?
Our build/deploy process is very tedious, sufficiently manual and error-prone. Could you give proposals for improvement?
So let me describe our deployment strategy and build process.
We are ...
5
votes
3answers
2k views
Git: How to create patches for a merge?
When I use git format-patch, it doesn't seem to include merges. How can I perform a merge and then e-mail it to someone as a set of patches?
For example, let's say that I merge two branches and ...
5
votes
2answers
975 views
How do I create binary patches?
What's the best way to go about making a patch for a binary file? I want it to be simple for users to apply(a simple patch application would be nice). Running diff on the file just gives Binary files ...
5
votes
1answer
308 views
Can git format patch so it can be used with patch program?
I'd need to create simple patches from git repository that can be applied with plain simple patch command line utility.
Can it be done?
5
votes
3answers
6k views
How to apply a git patch from one repository to another?
I have two repositories, one is the main repo for a library, and the other is a project using that library.
If I make a fix to the in the subservient project, I'd like an easy way to apply that patch ...
5
votes
3answers
334 views
Best practices for source control and bug fixes
If we need to issue a bug patch that does not include current development that has been committed, or any changes from their current version, what should be done to make the process safer and with ...
4
votes
3answers
215 views
Can I split already splitted hunk with git?
I've recently discovered git patch option to the add command, and I must say it really is a fantastic feature.
I also discovered that a large hunk could be splitted into smaller hunk by hitting the s ...
4
votes
2answers
477 views
How to create patch for a new file?
I know to create a patch for an existing file is easy:
diff -aru oldFile newFile 2>&1 | tee myPatch.patch
But what to do, if i want to create a patch for a totally new file? Assume my file is ...
4
votes
4answers
100 views
What to do when you have too many changes within a single patch in an hg mq the patch queue?
The purpose of the hg mq plugin is to be able to make perfect commits to your repository, not confusing the changes that you made in your absent-minded ADHD induced rambling through your code;
For ...
4
votes
1answer
192 views
Reformat regular diff patch to git format
Is there an easy way to reformat a regular (unified) diff patch into a git-format patch? What I want to do, is take a regular patch someone sends me and apply it with git, adding author information – ...
4
votes
2answers
292 views
Mercurial Queues: Merging Patches from Multiple Repositories
I am using Mercurial Queues on a repository, and have placed those patches in a patch repository. Another contributor has cloned my patch queue and made changes of their own. I would now like to ...
4
votes
4answers
466 views
Patching Java software
I'm trying to create a process to patch our current java application so users only need to download the diffs rather than the entire application. I don't think I need to go as low level as a binary ...
4
votes
1answer
132 views
Why does git pull --rebase fail when replaying existing commits?
I don't get this: when I 'git pull --rebase remote branch' it reverts my HEAD back to their shared root and then starts replaying all of the remote commits that have happened in the meantime. Why do ...