summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-07-05 17:43:24 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-07-05 17:43:24 +0200
commite955cc08bcd4ca16530b568154bb6e2d164546ed (patch)
tree68cb60bdb0a80df9c36b4262bcec56ba7e295440
parent6d3a3a53a2aaf8208368d81fa47550259810b770 (diff)
Add git remote script
-rwxr-xr-xgit/remote.sh15
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