Creating a patch file from a diff of 2 folders
If the project is under git and you haven't committed your changes locally, you can simply do git diff > file.patch
to get patchable diff data. If you have committed the changes locally, you can do git log
to find the commit before you and than git diff commit_string > file.patch
.
If the project isn't under git, or if you d/l source without cloning the repository (as the title suggests), you can use diff -urN original_dir new_dir > file.patch
to create the patch file. In both cases you can try use patch later to apply the patch.
However, consider using git tools to merge your changes with the new version, since git is able to track filename changes too. You'll need to learn great deal about git itself, and it will take you some time to get it right - you should probably backup your work before starting to play with it.
If you have two directories a
and b
that are similar, and you want b
to be the same as a
, you can create and apply a patch with:
$ diff -ur b a > ba.diff
$ patch -i ba.diff
Suppose you have directories local
(containing your local version of upstream1.0), upstream1.0
, and upstream1.1
. To create and apply your changes to upstream1.1
:
$ diff -ur upstream1.0 local > my.diff
$ cd upstream1.1
$ patch -i ../my.diff
Check the documentation for patch, and try to convince the upstream maintainers to use git. Things will be much simpler if you can use git tools to work with your local repository.