* suggestion: store the URL somewhere in .git/
@ 2005-08-22 20:08 Jeff Carr
2005-08-22 20:18 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Jeff Carr @ 2005-08-22 20:08 UTC (permalink / raw)
To: git
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"
+
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: suggestion: store the URL somewhere in .git/
2005-08-22 20:08 suggestion: store the URL somewhere in .git/ Jeff Carr
@ 2005-08-22 20:18 ` Johannes Schindelin
2005-08-23 1:46 ` Jeff Carr
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2005-08-22 20:18 UTC (permalink / raw)
To: Jeff Carr; +Cc: git
Hi,
On Mon, 22 Aug 2005, Jeff Carr wrote:
> 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.
This is why your original target (when you clone) is stored as "origin".
Hth,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: suggestion: store the URL somewhere in .git/
2005-08-22 20:18 ` Johannes Schindelin
@ 2005-08-23 1:46 ` Jeff Carr
2005-08-23 5:16 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Jeff Carr @ 2005-08-23 1:46 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git
On 08/22/2005 01:18 PM, Johannes Schindelin wrote:
> Hi,
>
> On Mon, 22 Aug 2005, Jeff Carr wrote:
>
>
>>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.
>
>
> This is why your original target (when you clone) is stored as "origin".
OK. I rsync'ed the repository directly so a origin file wasn't created.
That explains that. So my small "feature" request reduces to adding
something like this to git-pull-script. Thanks, Jeff
diff --git a/git-pull-script b/git-pull-script
--- a/git-pull-script
+++ b/git-pull-script
@@ -1,10 +1,20 @@
#!/bin/sh
#
+ORIGIN="$@"
+
+if [ ! $ORIGIN ]
+then
+ if [ -f .git/branches/origin ]
+ then
+ ORIGIN=`cat .git/branches/origin`
+ fi
+fi
+
. git-sh-setup-script || die "Not a git archive"
-. git-parse-remote "$@"
+. git-parse-remote "$ORIGIN"
merge_name="$_remote_name"
-git-fetch-script "$@" || exit 1
+git-fetch-script "$ORIGIN" || exit 1
git-resolve-script \
"$(cat "$GIT_DIR"/HEAD)" \
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: suggestion: store the URL somewhere in .git/
2005-08-23 1:46 ` Jeff Carr
@ 2005-08-23 5:16 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2005-08-23 5:16 UTC (permalink / raw)
To: Jeff Carr; +Cc: git
Jeff Carr <jcarr@linuxmachines.com> writes:
> So my small "feature" request reduces to adding
> something like this to git-pull-script. Thanks, Jeff
Somebody else earlier asked for fetch and pull to default to
"origin" URL, and the necessary change is already in the
proposed updates branch.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-08-23 5:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-22 20:08 suggestion: store the URL somewhere in .git/ Jeff Carr
2005-08-22 20:18 ` Johannes Schindelin
2005-08-23 1:46 ` Jeff Carr
2005-08-23 5:16 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).