Lines Matching refs:VCS
7 * If there are new files created, remember user to add them to VCS.
35 class VCS(object):
60 Return a list of files unknown to the VCS.
67 Return a list of files that were modified, according to the VCS.
88 Applies a patch using the most appropriate method to the particular VCS.
102 Implementation of a subversion backend for use with the VCS abstraction
106 logging.debug("Subversion VCS backend initialized.")
318 self.vcs = VCS()
319 changed_files_before = self.vcs.get_modified_files()
329 self.vcs.revert_file(changed_file)
331 self.untracked_files_before = self.vcs.get_unknown_files()
332 self.vcs.update()
359 untracked_files_after = self.vcs.get_unknown_files()
360 modified_files_after = self.vcs.get_modified_files()
370 logging.info("Might need to be added to VCS")
371 answer = utils.ask("Would you like to add them to VCS ?")
374 self.vcs.add_untracked_file(untracked_file)
388 self.vcs.apply_patch(self.patch)