It would be nice if the URL could be stored somewhere in .git/ This
makes it a lot easier to update repositories because you don't always
have to go and track down where you got it in the first place. Something
like this perhaps:
~$ cat .git/location
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/
~$ git-pull-script
Then something like below could be added to handle that easy enough.
Jeff
--- git-pull-script.orig 2005-07-31 22:23:50.000000000 -0700
+++ git-pull-script 2005-08-22 13:01:22.000000000 -0700
@@ -4,13 +4,24 @@
# cogito.]
#
+LOCATION="$@"
+
+if [ ! $LOCATION ]
+then
+ if [ -f .git/location ]
+ then
+ LOCATION=`cat .git/location`
+ fi
+fi
+
. git-sh-setup-script || die "Not a git archive"
-. git-parse-remote "$@"
+. git-parse-remote "$LOCATION"
merge_name="$_remote_name"
-git-fetch-script "$@" || exit 1
+git-fetch-script "$LOCATION" || exit 1
git-resolve-script \
"$(cat "$GIT_DIR"/HEAD)" \
"$(cat "$GIT_DIR"/FETCH_HEAD)" \
"Merge $merge_name"
+
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html