Changes between Version 2 and Version 3 of cypress/Programming/Svn)
- Timestamp:
- 08/18/15 22:52:09 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/Programming/Svn)
v2 v3 20 20 21 21 == First things to do == 22 * Create a repository on sphynx22 * Create a repository 23 23 {{{ 24 24 svnadmin create $HOME/repos … … 26 26 This creates a repository under '$HOME/repos'. 27 27 28 Note that $HOME is your home-directory on sphynx.28 Note that $HOME is your home-directory on Cypress. 29 29 30 30 Once you did this, you don't have to do this again. Do not delete '$HOME/repos' !!! … … 62 62 '''Do not upload.... Large sets of binary files; images, movie, music....''' 63 63 64 == Accessing your Repository over Network == 65 To access your Repository on sphynx' through ssh from other hosts, 64 65 66 ---- 67 68 ---- 69 70 == Tutorial::Accessing your Repository over Network == 71 To access your Repository on Cypress through ssh from other hosts, 66 72 67 73 {{{ 68 svn co svn+ssh://USERNAME@ sphynx.ccs.tulane.edu/HOME_DIRCTORY/repos/project1 ./project174 svn co svn+ssh://USERNAME@cypress1.tulane.edu/HOME_DIRCTORY/repos/project1 ./project1 69 75 }}} 70 76 71 You will be asked for typing your password on sphynx.77 You will be asked for typing your password. 72 78 73 USERNAME and HOME_DIRCTORY are your login user name and home directory on sphynx.79 USERNAME and HOME_DIRCTORY are your login user name and home directory on Cypress. 74 80 75 To see the path of your home directory, on sphynx81 To see the path of your home directory, on Cypress 76 82 {{{ 77 83 cat $HOME 78 84 }}} 85 79 86 * Using svn-client software with GUI 80 87 * There are Windows Versions and Mac OS versions. … … 83 90 == Try using Your Repository == 84 91 === Check out data === 85 Somewhere on sphynx,92 Somewhere on Cypress, 86 93 {{{ 87 94 svn co file:///$HOME/repos/project1 ./project1 … … 161 168 162 169 Look at the status and difference 163 {{{ {170 {{{ 164 171 svn stat 165 172 svn diff