OntoSVN

From CompSemWiki
Revision as of 13:22, 26 October 2009 by Trood (talk | contribs)
Jump to navigationJump to search

How to check out English Treebank files

   # checkout frameset files from the repository (first time only) BR
   cd /home/verbs/shared/cleardata/english BR
   svn co https://verbs.colorado.edu/svn/ontonotes/corpora/english/annotations/parse/ BR
   # update frameset files from the repository BR
   cd /home/verbs/shared/cleardata/english BR
   svn update BR

How to commit English Frameset files

first time usage

   # make a directory for frameset files
   mkdir frames
   # checkout frameset files from the repository
   cd frames
   svn co https://verbs.colorado.edu/svn/ontonotes/corpora/on/english/metadata/frames/

regular usage

   # update frameset files from the repository 
   cd frames
   svn update 
   # add/edit a frameset file (<verb>.xml) in the directory
   emacs <verb>.xml 
   # add the frameset file (<verb>.xml) to the repository,
   svn add <verb>.xml 
   # commit the changes
   svn commit -m "added/edited <verb>.xml"