tags:

views:

353

answers:

2

what is the equivalent of the .hgignore mercurial file in bazaar

+1  A: 

.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
+2  A: 

If you are on Windows the global ignore file is in C:\Document and Settings*Your User Name*\Application Data\Bazzar\2.0\ignore

Patrick Regan
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
I think that using **%appdata%\*Bazaar*\2.0\ignore** is better because actually i am using Vista
sohaibafifi