Difference between revisions of "Help:Subversion"
From Biowikifarm Metawiki
m (Created page with 'Subversion is used to control different versions of files and directories. Here a short cheat sheet. A goo documentation is available at http://svnbook.spears.at/nightly/en/ <so...') |
m |
||
Line 1: | Line 1: | ||
− | Subversion is used to control different versions of files and directories. Here a short cheat sheet. A | + | Subversion is used to control different versions of files and directories. Here a short cheat sheet. A good documentation is available at http://svnbook.spears.at/nightly/en/ [[File:Flag_icon_en.png|link=]] or http://svnbook.spears.at/nightly/de/ [[File:Flag_icon_de.png|link=]]. |
<source lang="bash"> | <source lang="bash"> |
Revision as of 15:08, 12 October 2010
Subversion is used to control different versions of files and directories. Here a short cheat sheet. A good documentation is available at http://svnbook.spears.at/nightly/en/ or http://svnbook.spears.at/nightly/de/ .
cd /usr/share/mediawiki/extensions/
# will copy all fils into /usr/share/mediawiki/extensions/SemanticForms/
sudo svn checkout --revision r69050 http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/SemanticForms/
# query status
cd /usr/share/mediawiki/extensions/SemanticForms/
svn status
# '?' not in version control
# 'A' Item is scheduled for addition.
# 'D' Item is scheduled for deletion.
# 'M' Item has been modified.
# 'C' The contents (as opposed to the properties) of the item conflict with updates received from the repository.