문제

If I have changes, commited in revisions 11, 13 , 17, 20 into a branch, can I create an svn patch like this ?

svn diff -r11:20

도움이 되었습니까?

해결책

You can, but don't forget path, which you diffing, canonical 1-st form of svn diff, JFYI, is:

diff [-c M | -r N[:M]] [TARGET[@REV]...]

다른 팁

this should be enough :)

svn diff -rFIRSTREVISION:LATESTREVISION pathOfWorkingCopy > /myPatchFile.patch
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top