Changes between Version 2 and Version 3 of SvnBasicCommands


Ignore:
Timestamp:
12/05/08 12:08:37 (15 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnBasicCommands

    v2 v3  
    2626== Download ircaam == 
    2727 
    28 To download ircaam in the directory ~/ircaam execute (with the appropriate login) 
     28To download ircaam in the directory {{{~/ircaam}}} execute (with the appropriate login) 
    2929 
    3030 
     
    3838== Update ircaam == 
    3939 
    40 To update everything, go to the directory where you installed ircaam (for example ~/ircaam) and execute 
     40To update everything, go to the directory where you installed ircaam (for example {{{~/ircaam}}}) and execute 
    4141 
    4242 
     
    108108#!html 
    109109<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    110  <code class="prompt">$</code> <strong class="userinput"><code>touch aaa</code></strong> create a aaa file 
     110 <code class="prompt">$</code> <strong class="userinput"><code>touch aaa</code></strong> create a {{{aaa}}} file 
    111111 <code class="prompt">$</code> <strong class="userinput"><code>ls -l aaa</code></strong> 
    112112<code class="computeroutput"> 
    113113-rw-r--r-- 1 smasson lodyc 0 Oct 29 09:59 aaa 
    114114</code> 
    115  <code class="prompt">$</code> <strong class="userinput"><code>svn status</code></strong> check your deposit, aaa file is signaled as unknown 
     115 <code class="prompt">$</code> <strong class="userinput"><code>svn status</code></strong> check your deposit, {{{aaa}}} file is signaled as unknown 
    116116<code class="computeroutput"> 
    117117?      aaa 
    118118</code> 
    119  <code class="prompt">$</code> <strong class="userinput"><code>svn add aaa</code></strong> add aaa file to the svn deposit 
     119 <code class="prompt">$</code> <strong class="userinput"><code>svn add aaa</code></strong> add {{{aaa}}} file to the svn deposit 
     120 
    120121<code class="computeroutput"> 
    121122A         aaa 
    122123</code> 
    123  <code class="prompt">$</code> <strong class="userinput"><code>svn status</code></strong>  check that aaa has been add to the deposit 
     124 <code class="prompt">$</code> <strong class="userinput"><code>svn status</code></strong> check that {{{aaa}}} has beed add to the deposit 
    124125<code class="computeroutput"> 
    125126A      aaa 
     
    157158<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    158159 <code class="prompt">$</code> <strong class="userinput"><code>mkdir AAA</code></strong> create the directory 
    159  <code class="prompt">$</code> <strong class="userinput"><code>svn status</code></strong> check your deposit, AAA is signaled as unknown 
     160 <code class="prompt">$</code> <strong class="userinput"><code>svn status</code></strong> check your deposit, {{{AAA}}} is signaled as unknown 
    160161<code class="computeroutput"> 
    161162?      AAA 
     
    186187#!html 
    187188<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    188 $Id$ 
     189$Id: svnbasiccommands.xml 3 2008-12-05 11:05:07Z pinsard $ 
    189190</pre> 
    190191}}} 
     
    200201}}} 
    201202 
    202 Next time you download/update you file, {{{$Id$}}} will be automatically replaced by the version tag. 
     203Next time you download/update you file, {{{$Id: svnbasiccommands.xml 3 2008-12-05 11:05:07Z pinsard $}}} will be automatically replaced by the version tag. 
    203204 
    204205== Commit your changes == 
     
    214215}}} 
    215216 
    216 or commit your change on one specific file (for example ~/ircaam/src/aaa) 
     217or commit your change on one specific file (for example {{{~/ircaam/src/aaa}}}) 
    217218 
    218219