Reputation: 12672
Sometimes I type bzr add
and don't notice that I am not in the root of the branch but an ignored sub-folder. This then adds all files in that folders - often it is a build folder, with lots of files. Hence the question: how to undo a bzr add
.
Upvotes: 6
Views: 1252
Reputation: 21473
There is built-in way without need of xargs: bzr remove --new --keep
Upvotes: 12