Mercurial > hg
view tests/test-inherit-mode @ 11989:f853873fc66d
aliases: provide more flexible ways to work with shell alias arguments
This patch changes the functionality of shell aliases to add more powerful
options for working with shell alias arguments.
First: the alias name + arguments to a shell alias are set as an HG_ARGS
environment variable, delimited by spaces. This matches the behavior of hooks.
Second: any occurrences of "$@" (without quotes) are replaced with the
arguments, separated by spaces. This happens *before* the alias gets to the shell.
Third: any positive numeric variables ("$1", "$2", etc) are replaced with the
appropriate argument, indexed from 1. "$0" is replaced with the name of the
alias. Any "extra" numeric variables are replaced with an empty string. This
happens *before* the alias gets to the shell.
These changes allow for more flexible shell aliases:
[alias]
echo = !echo $@
count = !hg log -r "$@" --template='.' | wc -c | sed -e 's/ //g'
qqueuemv = !mv "`hg root`/.hg/patches-$1" "`hg root`/.hg/patches-$2"
In action:
$ hg echo foo
foo
$ hg count 'branch(default)'
901
$ hg count 'branch(stable) and keyword(fixes)'
102
$ hg qqueuemv myfeature somefeature
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 18 Aug 2010 18:56:44 -0400 |
parents | 68cfd7d208a5 |
children |
line wrap: on
line source
#!/bin/sh # test that new files created in .hg inherit the permissions from .hg/store "$TESTDIR/hghave" unix-permissions || exit 80 mkdir dir # just in case somebody has a strange $TMPDIR chmod g-s dir cd dir cat >printmodes.py <<EOF import os, sys allnames = [] isdir = {} for root, dirs, files in os.walk(sys.argv[1]): for d in dirs: name = os.path.join(root, d) isdir[name] = 1 allnames.append(name) for f in files: name = os.path.join(root, f) allnames.append(name) allnames.sort() for name in allnames: suffix = name in isdir and '/' or '' print '%05o %s%s' % (os.lstat(name).st_mode & 07777, name, suffix) EOF cat >mode.py <<EOF import sys import os print '%05o' % os.lstat(sys.argv[1]).st_mode EOF umask 077 hg init repo cd repo chmod 0770 .hg/store echo '% before commit' echo '% store can be written by the group, other files cannot' echo '% store is setgid' python ../printmodes.py . mkdir dir touch foo dir/bar hg ci -qAm 'add files' echo echo '% after commit' echo '% working dir files can only be written by the owner' echo '% files created in .hg can be written by the group' echo '% (in particular, store/**, dirstate, branch cache file, undo files)' echo '% new directories are setgid' python ../printmodes.py . umask 007 hg init ../push echo echo '% before push' echo '% group can write everything' python ../printmodes.py ../push umask 077 hg -q push ../push echo echo '% after push' echo '% group can still write everything' python ../printmodes.py ../push # Test that we don't lose the setgid bit when we call chmod. # Not all systems support setgid directories (e.g. HFS+), so # just check that directories have the same mode. cd .. hg init setgid cd setgid chmod g+rwx .hg/store chmod g+s .hg/store 2> /dev/null mkdir dir touch dir/file hg ci -qAm 'add dir/file' storemode=`python ../mode.py .hg/store` dirmode=`python ../mode.py .hg/store/data/dir` if [ "$storemode" != "$dirmode" ]; then echo "$storemode != $dirmode" fi