]> git.phdru.name Git - git-scripts.git/blobdiff - update
Rename update -> update-remotes
[git-scripts.git] / update
diff --git a/update b/update
deleted file mode 100755 (executable)
index fd10a24..0000000
--- a/update
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/sh
-
-current="`git config --get --path remote.current.url`"
-origin="`git config --get --path remote.origin.url`"
-
-if [ -n "$origin" ]; then
-   if [ -n "$current" ]; then
-      echo "Config error (both origin and current)" >&2
-      exit 1
-   else
-      cd "$origin" &&
-      exec ./update
-   fi
-elif [ -z "$current" ]; then
-   echo "Wrong directory error (neither origin nor current)" >&2
-   exit 1
-fi
-
-git pull --ff-only current master &&
-
-web="`git config --get --path remote.web.url`" &&
-if [ -n "$web" ]; then
-   git push web
-fi &&
-
-cd "$current" && exec git pull origin