PDA

View Full Version : 9/25 patch



Newby
09-27-2015, 04:56 PM
Patch is against virgin subversion checkout.

Sigur
09-27-2015, 06:37 PM
Thanks Newby! Appears to be working for me. Had a little trouble trying to roll back to last subversion checkout on previous version but worked in a fresh directory and checkout. One thing i've noticed with your patches, is it acts like it can't find the files, but when you type in the name exactly as it is on your patch file it seems to find them and move on. Maybe missing an option in my patch command? I'm simply moving your patch file to the showeq folder and typing "patch < patchfilename"

flopz
09-27-2015, 09:50 PM
patch -p0 < diff-150925.txt

:)

flopz
09-27-2015, 09:53 PM
Also, when you're in the root of the svn tree:

svn revert -R .
svn up # This updates you to the latest codebase, in case it's changed
svn st | grep '^?' | sed 's/^?\s\+//' | xargs rm -vf
# ^ That deletes any generated files...it's an svn analogue of git clean -df

Sigur
09-28-2015, 07:23 PM
Thanks flopz will give that stuff a try and see if i can get the original directory working.

BlueAdept
09-28-2015, 08:02 PM
Thanks!