You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by Apache Wiki <wi...@apache.org> on 2005/05/15 20:50:31 UTC

[Jdo Wiki] Update of "SubversionRepository" by MichaelBouschen

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Jdo Wiki" for change notification.

The following page has been changed by MichaelBouschen:
http://wiki.apache.org/jdo/SubversionRepository

------------------------------------------------------------------------------
  
  Please use the regular http proxy settings in case you want to access the the repository from the Sun network (SWAN).
  
+ = Submitting a Patch =
+     
+ If you make changes to Apache JDO, and would like to contribute the to the project, you should create a patch and send it to the jdo-dev alias jdo-dev@db.apache.org.  To create a patch, simply execute the following command:
+ 
+  {{{
+ % svn diff > your-changes.patch
+ }}}
+ 
+ = Developer Access =
+     
+ Everyone can access the Apache JDO Subversion repository via HTTPS, but Apache JDO Committers must checkout the Subversion repository via HTTPS.
+  {{{
+ % svn checkout https://svn.apache.org/repos/asf/incubator/jdo
+ }}}
+     
+ To commit changes to the repository, you must set your password on the Apache Subversion server.  To set your password, use ssh to connect to svn.apache.org, and enter the command '''svnpasswd'''. This will prompt you to enter a svn password of your choice (pick a safe password).  Now, now your are ready to commit changes using your username/password.  Execute the following command to commit your changes (svn will prompt you for your password)
+   {{{
+ $> svn commit --username your-username
+ Authentication realm: <https://svn.apache.org:443> ASF Committers
+ Password for 'your-username': your-password
+ }}}
+     
+ You can also pass your password on the command line directly, but this is a security problem on multiuser unix computers (the command line arguments are available via the ps command).  Here is the command if you are Windows or a single user unix computer:
+   {{{
+ $> svn commit --username your-username --password your-password
+ }}}
+     
+ Remember to replace 'your-username' and 'your-password' with your actual username and password on svn.apache.org.
+