Show More
@@ -67,3 +67,12 b' def extsetup(ui):' | |||||
67 | extensions.wrapfunction(dirstatecl, 'remove', _checkdirstate) |
|
67 | extensions.wrapfunction(dirstatecl, 'remove', _checkdirstate) | |
68 | extensions.wrapfunction(dirstatecl, 'merge', _checkdirstate) |
|
68 | extensions.wrapfunction(dirstatecl, 'merge', _checkdirstate) | |
69 | extensions.wrapfunction(dirstatecl, 'drop', _checkdirstate) |
|
69 | extensions.wrapfunction(dirstatecl, 'drop', _checkdirstate) | |
|
70 | extensions.wrapfunction(dirstatecl, 'set_tracked', _checkdirstate) | |||
|
71 | extensions.wrapfunction(dirstatecl, 'set_untracked', _checkdirstate) | |||
|
72 | extensions.wrapfunction( | |||
|
73 | dirstatecl, 'set_possibly_dirty', _checkdirstate | |||
|
74 | ) | |||
|
75 | extensions.wrapfunction( | |||
|
76 | dirstatecl, 'update_file_p1', _checkdirstate | |||
|
77 | ) | |||
|
78 | extensions.wrapfunction(dirstatecl, 'update_file', _checkdirstate) |
General Comments 0
You need to be logged in to leave comments.
Login now