Changeset 842 in tailor
- Timestamp:
- 09/24/05 23:37:44 (8 years ago)
- Hash name:
- 20050924213744-97f81-e9221c2eef516c49fd4979c1d68a9c65a4600c6a
- File:
-
- 1 edited
-
vcpx/svn.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/svn.py
r841 r842 101 101 # RENAMED. 102 102 103 # When copying a directory from another location in the 104 # repository (outside the tracked tree), SVN will report files 105 # below this dir that are not being committed as being 103 # When copying a directory from another location in the 104 # repository (outside the tracked tree), SVN will report files 105 # below this dir that are not being committed as being 106 106 # removed. 107 107 108 108 # We thus need to change the action_kind for all entries 109 # that are below a dir that was "copyfrom" from a path 109 # that are below a dir that was "copyfrom" from a path 110 110 # outside of this module: 111 # D -> Remove entry completely (it's not going to be in here)112 # (M,A,R) -> A111 # D -> Remove entry completely (it's not going to be in here) 112 # (M,A,R) -> A 113 113 114 114 mv_or_cp = {} … … 138 138 entries.append(e) 139 139 elif parent_was_copied_externally(e.name): 140 if e.action_kind != e.DELETED: 140 if e.action_kind != e.DELETED: 141 141 e.action_kind = e.ADDED 142 142 entries.append(e)
Note: See TracChangeset
for help on using the changeset viewer.
