diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-05 17:43:24 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-05 17:43:24 +0200 |
commit | e955cc08bcd4ca16530b568154bb6e2d164546ed (patch) | |
tree | 68cb60bdb0a80df9c36b4262bcec56ba7e295440 /git/remote.sh | |
parent | 6d3a3a53a2aaf8208368d81fa47550259810b770 (diff) |
Add git remote script
Diffstat (limited to 'git/remote.sh')
-rwxr-xr-x | git/remote.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/git/remote.sh b/git/remote.sh new file mode 100755 index 0000000..8d67450 --- /dev/null +++ b/git/remote.sh @@ -0,0 +1,15 @@ +#! /bin/sh + +# Assume this script never run via PATH. +# +self=`realpath $0` +. `dirname $self`/modules + +wd=`pwd` + +for i in $modules; do + echo "remote $i" 1>&2 + cd $i + git remote $* + cd $wd +done |