How to track the complete log of moved files / dirs in SVN?

The following is the result of svn log -v , and it stops when the / dirs files go through. How can I get a complete tracked log?

svn log -v

r3171 | drake | 2010-08-16 15:04:49 +0800 (Mon, 16 Aug 2010) | 1 line
Changed paths:
   D /lib/python2.5/dgGetFileSequence.py
   D /lib/python2.5/dgHumanSort.py
   D /lib/python2.5/dgconfig.py
   D /lib/python2.5/dgdata.py
   D /lib/python2.5/dgtools.py
   A /python/dgtools/dgGetFileSequence.py (from /lib/python2.5/dgGetFileSequence.py:3170)
   A /python/dgtools/dgHumanSort.py (from /lib/python2.5/dgHumanSort.py:3170)
   A /python/dgtools/dgconfig.py (from /lib/python2.5/dgconfig.py:3170)
   A /python/dgtools/dgdata.py (from /lib/python2.5/dgdata.py:3170)
   A /python/dgtools/dgtools.py (from /lib/python2.5/dgtools.py:3170)
+3
source share
1 answer

svn logwill provide you with a complete logbook even when renaming / moving / copying. Only if you specify --stop-on-copy, it will stop when renaming / moving / copying.

, // svn (svn mv, svn cp), , svn. , "" . .

+1

Source: https://habr.com/ru/post/1796470/


All Articles