An educated guess (Timur Fanshteyn)

Technology, Software Development and other ways to make an educated guess about the world...

  Home  |   Contact  |   Syndication    |   Login
  17 Posts | 0 Stories | 4 Comments | 0 Trackbacks

News

Twitter












Tag Cloud


Archives

Subversion

There are 2 entries for the tag Subversion
Another small batch file hook for those running subversion on windows. This hook will allow users to update a log message on the old check-in. Note: Property changes are not versioned, so you will permanently loose the old message. Place this in a pre-revprop-change.cmd ------------- IF %5 EQU M GOTO CONT1 GOTO FAIL :CONT1 IF %4 EQU svn:log GOTO OK :FAIL echo "Changing revision properties other than svn:log is prohibited" >&2 exit 1 :OK exit 0 ------------ Technorati Tags: Subversion,...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

I am using a great source control product Subversion. More information is available on http://subversion.tigris.org A great future of subversion is an ability to run a server script before the check-in is committed . The script has the ability to rollback the check-in. We are using this functionality to enforce comments for every check-in. To create a script, place any executable file into a hooks folder in the repository. You can start with a ... Read full article Technorati Tags: Development,Subversion,Tips...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati