Jesica, That is fantastic work. You now have commit access so you can apply changes directly to the repository yourself. Any of the devs on IRC can help walk you through a tutorial on how to check in your changes using svn if you've not used it before. You're welcome to ask questions here too!
Basically, though, # you should see several lines with '?' for the files you added, maybe others with 'M' (e.g., Makefile.am). svn status doc/docbook # this will get any changes from the server. svn update doc/docbook # this is how you add new files for the first time. svn add doc/docbook/lessons/es/mged03_utilizar_comando_in.xml svn add doc/docbook/lessons/es/mged06_crear_una_copa.xml # you should see your mged03_utilizar_comando_in.xml file now list as 'A' instead of '?'. svn status doc/docbook/lessons/es # this will send your changes in the 'es' directory to the repository. it will prompt you for a commit message. # explain what you did and why in the commit message, any information others should know about the change. svn commit doc/docbook/lessons/es Cheers! Sean On Monday, January 11, 2010, at 09:10PM, "Giudice Jesica" <[email protected]> wrote: >------------------------------------------------------------------------------ >This SF.Net email is sponsored by the Verizon Developer Community >Take advantage of Verizon's best-in-class app development support >A streamlined, 14 day to market process makes app distribution fast and easy >Join now and get one step closer to millions of Verizon customers >http://p.sf.net/sfu/verizon-dev2dev >_______________________________________________ >BRL-CAD Developer mailing list >[email protected] >https://lists.sourceforge.net/lists/listinfo/brlcad-devel > >
------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________ BRL-CAD Developer mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/brlcad-devel
