Lines Matching full:alias
44 ... [alias]
58 # Check to make sure that bogus project gets general alias.
61 >>> config.get("alias", "enemies")
64 # Check to make sure that alias gets overridden by project.
67 >>> config.get("alias", "enemies")
157 """Read a git alias file. This is in the form used by git:
159 alias uboot u-boot@lists.denx.de
160 alias wd Wolfgang Denk <wd@denx.de>
168 print("Warning: Cannot find alias file '%s'" % fname)
171 re_line = re.compile('alias\s+(\S+)\s+(.*)')
179 print("Warning: Alias file line '%s' not understood" % line)
182 list = alias.get(m.group(1), [])
187 alias[m.group(1)] = list
215 print('''[alias]
253 """Read in the U-Boot git alias file if it exists.
268 if len(words) < 3 or words[0] != 'alias':
273 alias[words[1]] = [s.strip() for s in words[2].split(',')]
316 # First read the git alias file if available
328 for name, value in GetItems(config, 'alias'):
329 alias[name] = value.split(',')
337 # These are the aliases we understand, indexed by alias. Each member is a list.
338 alias = {} variable