chiark / gitweb /
Initial commit (Release 0.4)
[stgit] / stgit / config.py
CommitLineData
41a6d859
CM
1"""Handles the Stacked GIT configuration files
2"""
3
4__copyright__ = """
5Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License version 2 as
9published by the Free Software Foundation.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19"""
20
21import os, ConfigParser
22
23
24if 'GIT_DIR' in os.environ:
25 __git_dir = os.environ['GIT_DIR']
26else:
27 __git_dir = '.git'
28
29config = ConfigParser.RawConfigParser()
30
31config.readfp(file('/etc/stgitrc'))
32config.read(os.path.expanduser('~/.stgitrc'))
33config.read(os.path.join(__git_dir, 'stgitrc'))