mercurial/repo.py
author mcmillen@cs.cmu.edu
Fri, 24 Mar 2006 20:18:02 +0100
changeset 2003 62647394e368
parent 1089 142b5d5ec9cc
child 2612 ffb895f16925
permissions -rw-r--r--
Implementation of per-user .hgignore. Reference: http://www.selenic.com/mercurial/bts/issue166 If the [ui] section of .hgrc contains keys like "ignore" or "ignore.something", the values corresponding to these keys are treated as per-user hgignore files. These hgignore files apply to all repositories used by that user.

# repo.py - repository base classes for mercurial
#
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.

class RepoError(Exception): pass