Difference between revisions of "Net-SNMP SVN Usage Page"

From Net-SNMP Wiki
Jump to: navigation, search
 
Line 20: Line 20:
  
 
   svn commit FILE
 
   svn commit FILE
 +
 +
Listing what's available in the remote repository:
 +
 +
  svn co https://net-snmp.svn.sourceforge.net/svnroot/net-snmp/tags/
 +
 +
Figuring out who modified a line in a file ''(cvs annotate)'':
 +
 +
  svn blame FILE

Revision as of 00:23, 2 March 2007

Quick Notes on using SVN to pull the current Net-SNMP development code base:

Checking out the main-line code base:

 svn co https://net-snmp.svn.sourceforge.net/svnroot/net-snmp/trunk/net-snmp net-snmp

Seeing if your local checkout has modifications:

 svn status

Updating/Merging to the current repository version:

 svn update

Comparing your local file to the repository file:

 svn diff FILE

Committing you changes (requires write access)

 svn commit FILE

Listing what's available in the remote repository:

 svn co https://net-snmp.svn.sourceforge.net/svnroot/net-snmp/tags/

Figuring out who modified a line in a file (cvs annotate):

 svn blame FILE