Is there a way that Bazaar can automatically detect changes (add, delete, rename, etc.) made by part of the working directory and automatically apply them?
I have a directory tree in my repository that is generated by another process, so I can not execute all the commands bzr add, bzr deleteand bzr renameas the files change. Instead, I would like bzr to notice all the changes and apply them after starting this process.
The only way that I can do now is - to run bzr status, and then manually (or by writing the script) to run bzr add, and bzr deletein all these files. This will work, but I hope there is an automated method that can also determine if a file has been renamed (the added file has the same contents of the delete file).
Trent source
share