Changes between Version 44 and Version 45 of Developers/SVN_QuickReference
- Timestamp:
- 2018-06-05T02:30:02+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developers/SVN_QuickReference
v44 v45 49 49 }}} 50 50 51 === Info / Status 52 53 Display information about a local or remote item 54 55 {{{#!sh 56 svn info '{PATH...,URL...}[@PEGREV]' 57 }}} 58 59 Display the current state of the working copy wrt the one mirrored in the repository 60 61 {{{#!sh 62 svn status [-[qu]] '[PATH...]' 63 }}} 64 65 === Revert local changes 66 67 {{{#!sh 68 svn revert [--depth {empty,files,immediates,infinity}] 'PATH...' 69 }}} 70 51 71 == Manage versioned properties on items 52 72 … … 71 91 72 92 === `svn:externals` for defining external sources 73 74 75 76 == Revert local changes77 78 {{{#!sh79 svn revert [--depth {empty,files,immediates,infinity}] 'PATH...'80 }}}81 93 82 94