Difference between revisions of "Tutorial:Check in procedure"

From MSL-Libraries
Jump to navigationJump to search
(Created page with "1) How to checkout, modify and checkin the latest version (trunk) cd mslib/trunk svn co https://mslib.svn.sourceforge.net/svnroot/mslib/trunk . # Check the version that ...")
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
  cd mslib/trunk
 
  cd mslib/trunk
  svn co https://mslib.svn.sourceforge.net/svnroot/mslib/trunk .
+
  svn co svn://svn.code.sf.net/p/mslib/code/trunk .
 
   
 
   
 
  # Check the version that you have..
 
  # Check the version that you have..
 
  head -n 40 src/release.h  
 
  head -n 40 src/release.h  
 +
 
 +
# modify some files
 
   
 
   
# modify some files
 
 
 
  # check in using MSLDIR/scripts/submit.py , current version is v1.0.1.7 .  new version would be v1.0.X.Y ; X > 0
 
  # check in using MSLDIR/scripts/submit.py , current version is v1.0.1.7 .  new version would be v1.0.X.Y ; X > 0
 
   
 
   
Line 14: Line 14:
  
 
  cd mslib/branches/v1.0
 
  cd mslib/branches/v1.0
  svn co https://mslib.svn.sourceforge.net/svnroot/mslib/branches/v.1.0 .
+
  svn co https://svn.code.sf.net/p/mslib/code/branches/v.1.0 .
 
   
 
   
 
  # Check the version that you have
 
  # Check the version that you have
 
  head -n 40 src/release.h  
 
  head -n 40 src/release.h  
 
+
 
  # modify some files
 
  # modify some files
+
 
 
  # check in using MSLDIR/scripts/submit.py , current version is 1.0.0.1. new version would be v1.0.0.X
 
  # check in using MSLDIR/scripts/submit.py , current version is 1.0.0.1. new version would be v1.0.0.X

Latest revision as of 21:36, 22 September 2013

1) How to checkout, modify and checkin the latest version (trunk)

cd mslib/trunk
svn co  svn://svn.code.sf.net/p/mslib/code/trunk .

# Check the version that you have..
head -n 40 src/release.h 
 
# modify some files

# check in using MSLDIR/scripts/submit.py , current version is v1.0.1.7 .  new version would be v1.0.X.Y ; X > 0

2) How to checkout, modify and checkin the release , say v1.0

cd mslib/branches/v1.0
svn co  https://svn.code.sf.net/p/mslib/code/branches/v.1.0 .

# Check the version that you have
head -n 40 src/release.h 

# modify some files
 
# check in using MSLDIR/scripts/submit.py , current version is 1.0.0.1. new version would be v1.0.0.X