##// END OF EJS Templates
dirstate: update the documentation of the dirstatemap API...
marmoute -
r48810:aa442fde default
parent child Browse files
Show More
@@ -46,8 +46,14 b' class dirstatemap(object):'
46 - the state map maps filenames to tuples of (state, mode, size, mtime),
46 - the state map maps filenames to tuples of (state, mode, size, mtime),
47 where state is a single character representing 'normal', 'added',
47 where state is a single character representing 'normal', 'added',
48 'removed', or 'merged'. It is read by treating the dirstate as a
48 'removed', or 'merged'. It is read by treating the dirstate as a
49 dict. File state is updated by calling the `addfile`, `removefile` and
49 dict. File state is updated by calling various methods (see each
50 `dropfile` methods.
50 documentation for details):
51
52 - `reset_state`,
53 - `set_tracked`
54 - `set_untracked`
55 - `set_clean`
56 - `set_possibly_dirty`
51
57
52 - `copymap` maps destination filenames to their source filename.
58 - `copymap` maps destination filenames to their source filename.
53
59
General Comments 0
You need to be logged in to leave comments. Login now