On Jun 28, 2011, at 12:14 PM, Ranga S wrote: > Hi > > I am trying to add an example directory. I've done an "svn add" and it > displayed that all the files have been added. However, when I do a "svn diff" > to submit a patch, I only see additions from the first level. I don't see any > of the source code contents in the patch file. I thought "diff" would recurse > and add the source contents as well. Here is the sample directory structure: > ../ > ++examples > +++myexample > ++++pom.xml > ++++README.txt > ++++src > > Only the pom.xml and README.txt changes are included in the patch file. I > don't see any of the source code from under the "src" directory. > Appreciate any help with this.
It is recursive but probably the directories under src/ haven't been added -- or the src/ directory itself hasn't been added. Try doing an 'svn add' on src/ or each directory under src/ and see if that doesn't clear it up. -David
