Hallo Thomas, On May 24, 8:00 am, "T. Modes" <[email protected]> wrote: > I don't know, if this works in your case, but you can create a > file .hgignore next to the .hg folder which contains files which are > ignored by mercurial. > Seehttp://mercurial.selenic.com/wiki/.hgignore
.hgignore is global and pushed/pulled across repositories, so your .hgignore will go to SourceForge at the next push, and from there to me, Harry, and others at our next pull. > My .hgignore contains the following lines (created by TortoiseHG): > glob:rev.txt > glob:.hgignore makes sense globally. We may want to add patterns like *.bak$ *~$ to avoid unintentionally addition of editor backup files. If you want to ignore something on a per-user basis (i.e. locally only), you need to reference a file in your ~/.hgrc (or <repo>/.hg/.hgrc) file in the "ignore" entry of the [ui] section, e.g. [ui] ... ignore = ~/.hgignore_hugin and edit the file (.hgignore_hugin in this case) with the same syntax as .hgignore http://www.selenic.com/mercurial/hgignore.5.html http://www.selenic.com/mercurial/hgrc.5.html Yuv -- You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/hugin-ptx
