Comment 1 for bug 300062

Revision history for this message
John A Meinel (jameinel) wrote : Re: "bzr ignore RE:*.cpp" just crashed in an empty repo.

*.cpp

is an invalid regex, I would guess you actually just wanted a glob, which would be "*.cpp".

If you wanted a regex, then you would need "RE:.*\.cpp"

That said, bzr could be a bit better about giving you a single line "Invalid regex: '*.cpp'" or something of the sort.