Changes between Version 47 and Version 48 of Developers/SVN_QuickReference
- Timestamp:
- 2018-06-05T02:42:26+02:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers/SVN_QuickReference
v47 v48 25 25 26 26 {{{#!sh 27 svn sw 'URL[@PEGREV] [ PATH]'27 svn sw 'URL[@PEGREV] [WCPATH]' 28 28 }}} 29 29 … … 42 42 }}} 43 43 44 === Add a new item / Remove a [remote]item44 === Add a new item / Remove a item 45 45 46 46 {{{#!sh 47 svn add 'PATH...' 48 svn del '{PATH...,URL...}' 47 svn {add,del} 'WCPATH' 49 48 }}} 50 49 51 === Info / Status 50 === Info / Status / Log 52 51 53 52 Display information about a local or remote item 54 53 55 54 {{{#!sh 56 svn info ' {PATH...,URL...}[@PEGREV]'55 svn info 'WCPATH[@PEGREV]' 57 56 }}} 58 57 … … 60 59 61 60 {{{#!sh 62 svn status [-[qu]] '[PATH...]' 61 svn status [-[qu]] '[WCPATH]' 62 }}} 63 64 Display all commits performed to your working repository since its creation 65 66 {{{#!sh 67 svn log --verbose --stop-on-copy 'WCPATH' 63 68 }}} 64 69 … … 66 71 67 72 {{{#!sh 68 svn revert [--depth {empty,files,immediates,infinity}] ' PATH...'73 svn revert [--depth {empty,files,immediates,infinity}] 'WCPATH' 69 74 }}} 70 75 … … 76 81 77 82 {{{#!sh 78 svn pset svn:keywords Id ' PATH...'83 svn pset svn:keywords Id 'WCPATH' 79 84 }}} 80 85 … … 87 92 88 93 {{{#!sh 89 svn {pset,pdel} svn:executable ' PATH...'94 svn {pset,pdel} svn:executable 'WCPATH' 90 95 }}} 91 96 … … 98 103 99 104 {{{#!sh 100 svn merge ' PATH1@REV1 PATH2@REV2 [PATH]'105 svn merge 'WCPATH1@REV1 WCPATH2@REV2 [WCPATH]' 101 106 }}} 102 107 … … 148 153 }}} 149 154 150 === Information about the sources 151 152 To get information such as the PATH/URL you are working on, .i.e. trunk, branches .. and so on 153 154 {{{#!sh 155 cd ./NEMO && svn info 156 }}} 157 158 To get all commits/''revision'' performed/''associated'' on/''to'' your working repository since its creation 159 160 {{{#!sh 161 cd ./NEMO && svn log --verbose --stop-on-copy 162 }}} 155 ---- 163 156 164 157 With the new layout of the repository, some may encounter downloading or updating issues with