what is the equivalent of the .hgignore mercurial file in bazaar
Asked
Active
Viewed 3,338 times
2 Answers
11
.bzrignore (at the top of the repository tree), or ~/.bazaar/ignore (for global ignores). Much more information is easily found on the Bazaar site/tutorial - e.g. http://doc.bazaar-vcs.org/bzr-0.9/tutorial.html.

Adam Wright
- 48,938
- 12
- 131
- 152
6
If you are on Windows the global ignore file is in %appdata%\Bazzar\2.0\ignore

Umair
- 4,864
- 3
- 28
- 47

Patrick Regan
- 180
- 4
-
Also you can add individual ignores via command line. "bzr ignore *.txt" would ignore all with the .txt extention. Not exactly what you were looking for, but it works as well. Underneath it just adds things to the ignore file in that repo. – Patrick Regan Oct 02 '09 at 19:55
-
3I think that using **%appdata%\*Bazaar*\2.0\ignore** is better because actually i am using Vista – sohaibafifi Oct 03 '09 at 10:11