On Oct 13, 12:36 pm, jimgardener wrote:
> hi
> I have some demo python code hosted on a public host that uses
> subversion..and I want to modify one of the files using a patch file
> handed to me by another person..How do I do this?Generally I checkout
> the code and make the change and then comm
In message , Diez B. Roggisch wrote:
> My first attempt would be
>
> cd my_project
> patch -p0 < the.patch
>
> But it might not work, depending on how the patch was created.
If the OP can post some initial part of the patch (probably the first dozen
lines should be ample), we can get a bet
jimgardener writes:
> hi
> I have some demo python code hosted on a public host that uses
> subversion..and I want to modify one of the files using a patch file
> handed to me by another person..How do I do this?Generally I checkout
> the code and make the change and then commit again..I have ne
On Wed, Oct 13, 2010 at 3:36 PM, jimgardener wrote:
> hi
> I have some demo python code hosted on a public host that uses
> subversion..and I want to modify one of the files using a patch file
> handed to me by another person..How do I do this?Generally I checkout
> the code and make the change
hi
I have some demo python code hosted on a public host that uses
subversion..and I want to modify one of the files using a patch file
handed to me by another person..How do I do this?Generally I checkout
the code and make the change and then commit again..I have never done
through patch..Can some