* [PATCH] Allow fetching references from any namespace
@ 2007-05-11 20:35 Alex Riesen
2007-05-11 20:54 ` Junio C Hamano
0 siblings, 1 reply; 6+ messages in thread
From: Alex Riesen @ 2007-05-11 20:35 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
not only from the three defined: heads, tags and remotes.
Noticed when I tried to fetch the references created by git-p4-import.bat:
they are placed into separate namespace (refs/p4import/, to avoid showing
them in git-branch output). As canon_refs_list_for_fetch always prepended
refs/heads/ it was impossible, and annoying: it worked before. Normally,
the p4import references are useless anywhere but in the directory managed
by perforce, but in this special case the cloned directory was supposed
to be a backup, including the p4import branch: it keeps information about
where the imported perforce state came from.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
---
git-parse-remote.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/git-parse-remote.sh b/git-parse-remote.sh
index 437b0c3..0506b12 100755
--- a/git-parse-remote.sh
+++ b/git-parse-remote.sh
@@ -143,13 +143,13 @@ canon_refs_list_for_fetch () {
fi
case "$remote" in
'' | HEAD ) remote=HEAD ;;
- refs/heads/* | refs/tags/* | refs/remotes/*) ;;
+ refs/*) ;;
heads/* | tags/* | remotes/* ) remote="refs/$remote" ;;
*) remote="refs/heads/$remote" ;;
esac
case "$local" in
'') local= ;;
- refs/heads/* | refs/tags/* | refs/remotes/*) ;;
+ refs/*) ;;
heads/* | tags/* | remotes/* ) local="refs/$local" ;;
*) local="refs/heads/$local" ;;
esac
--
1.5.2.rc3.17.ge713
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Allow fetching references from any namespace
2007-05-11 20:35 [PATCH] Allow fetching references from any namespace Alex Riesen
@ 2007-05-11 20:54 ` Junio C Hamano
2007-05-12 7:40 ` Alex Riesen
0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2007-05-11 20:54 UTC (permalink / raw)
To: Alex Riesen; +Cc: git
Alex Riesen <raa.lkml@gmail.com> writes:
> not only from the three defined: heads, tags and remotes.
>
> Noticed when I tried to fetch the references created by git-p4-import.bat:
> they are placed into separate namespace (refs/p4import/, to avoid showing
> them in git-branch output). As canon_refs_list_for_fetch always prepended
> refs/heads/ it was impossible, and annoying: it worked before. Normally,
> the p4import references are useless anywhere but in the directory managed
> by perforce, but in this special case the cloned directory was supposed
> to be a backup, including the p4import branch: it keeps information about
> where the imported perforce state came from.
Have no objection to the patch itself, but mind pointing out
where we broke it (I suspect it is around 1.5.0)?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Allow fetching references from any namespace
2007-05-11 20:54 ` Junio C Hamano
@ 2007-05-12 7:40 ` Alex Riesen
2007-05-12 7:55 ` Junio C Hamano
0 siblings, 1 reply; 6+ messages in thread
From: Alex Riesen @ 2007-05-12 7:40 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Junio C Hamano, Fri, May 11, 2007 22:54:47 +0200:
> Alex Riesen <raa.lkml@gmail.com> writes:
>
> > not only from the three defined: heads, tags and remotes.
> >
> > Noticed when I tried to fetch the references created by git-p4-import.bat:
> > they are placed into separate namespace (refs/p4import/, to avoid showing
> > them in git-branch output). As canon_refs_list_for_fetch always prepended
> > refs/heads/ it was impossible, and annoying: it worked before. Normally,
> > the p4import references are useless anywhere but in the directory managed
> > by perforce, but in this special case the cloned directory was supposed
> > to be a backup, including the p4import branch: it keeps information about
> > where the imported perforce state came from.
>
> Have no objection to the patch itself, but mind pointing out
> where we broke it (I suspect it is around 1.5.0)?
>
Maybe even much earlier. According to
git log -p --decorate -- git-fetch-script git-parse-remote-script
commit ac4b0cff00b7629657e61a1d6e1f1a1250d03198
Author: Junio C Hamano <junkio@cox.net>
Date: Sat Aug 20 02:52:24 2005 -0700
[PATCH] Start adding the $GIT_DIR/remotes/ support.
+canon_refs_list_for_fetch () {
+ for ref
+ do
+ expr "$ref" : '.*:' >/dev/null || ref="${ref}:"
+ remote=$(expr "$ref" : '\([^:]*\):')
+ local=$(expr "$ref" : '[^:]*:\(.*\)')
+ case "$remote" in
+ '') remote=HEAD ;;
+ *) remote="refs/heads/$remote" ;;
+ esac
+ case "$local" in
+ '') local= ;;
+ *) local="refs/heads/$local" ;;
+ esac
+ echo "${remote}:${local}"
+ done
+}
it was this way since at least Aug 2005.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Allow fetching references from any namespace
2007-05-12 7:40 ` Alex Riesen
@ 2007-05-12 7:55 ` Junio C Hamano
2007-05-13 3:48 ` Marco Costalba
0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2007-05-12 7:55 UTC (permalink / raw)
To: Alex Riesen; +Cc: git
Alex Riesen <raa.lkml@gmail.com> writes:
> Junio C Hamano, Fri, May 11, 2007 22:54:47 +0200:
>> Alex Riesen <raa.lkml@gmail.com> writes:
>>
>> > not only from the three defined: heads, tags and remotes.
>> >
>> > Noticed when I tried to fetch the references created by git-p4-import.bat:
>> > they are placed into separate namespace (refs/p4import/, to avoid showing
>> > them in git-branch output). As canon_refs_list_for_fetch always prepended
>> > refs/heads/ it was impossible, and annoying: it worked before. Normally,
>> > the p4import references are useless anywhere but in the directory managed
>> > by perforce, but in this special case the cloned directory was supposed
>> > to be a backup, including the p4import branch: it keeps information about
>> > where the imported perforce state came from.
>>
>> Have no objection to the patch itself, but mind pointing out
>> where we broke it (I suspect it is around 1.5.0)?
>>
>
> Maybe even much earlier. According to
>
> git log -p --decorate -- git-fetch-script git-parse-remote-script
>
> commit ac4b0cff00b7629657e61a1d6e1f1a1250d03198
> Author: Junio C Hamano <junkio@cox.net>
> Date: Sat Aug 20 02:52:24 2005 -0700
>
> [PATCH] Start adding the $GIT_DIR/remotes/ support.
Sounds like it is not even a regression but just was not
supposed to work from the beginning.
Not that I think lifting that restriction is a bad idea,
though.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Allow fetching references from any namespace
2007-05-12 7:55 ` Junio C Hamano
@ 2007-05-13 3:48 ` Marco Costalba
2007-05-13 7:24 ` Jan Hudec
0 siblings, 1 reply; 6+ messages in thread
From: Marco Costalba @ 2007-05-13 3:48 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Alex Riesen, git
On 5/12/07, Junio C Hamano <junkio@cox.net> wrote:
>
> Sounds like it is not even a regression but just was not
> supposed to work from the beginning.
>
> Not that I think lifting that restriction is a bad idea,
> though.
>
> -
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
Please consider that StGIT put patch names under refs/patches and
probably we don't want to see them.
I'm very sorry but I cannot test my-self because I'm leaving now. I
have just seen the patch applied in git tree and this thing come to my
mind.
Marco
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Allow fetching references from any namespace
2007-05-13 3:48 ` Marco Costalba
@ 2007-05-13 7:24 ` Jan Hudec
0 siblings, 0 replies; 6+ messages in thread
From: Jan Hudec @ 2007-05-13 7:24 UTC (permalink / raw)
To: Marco Costalba; +Cc: Junio C Hamano, Alex Riesen, git
[-- Attachment #1: Type: text/plain, Size: 1035 bytes --]
On Sun, May 13, 2007 at 05:48:00 +0200, Marco Costalba wrote:
> On 5/12/07, Junio C Hamano <junkio@cox.net> wrote:
> >
> >Sounds like it is not even a regression but just was not
> >supposed to work from the beginning.
> >
> >Not that I think lifting that restriction is a bad idea,
> >though.
> >
> >-
> >To unsubscribe from this list: send the line "unsubscribe git" in
> >the body of a message to majordomo@vger.kernel.org
> >More majordomo info at http://vger.kernel.org/majordomo-info.html
> >
>
> Please consider that StGIT put patch names under refs/patches and
> probably we don't want to see them.
If you don't add them to the push configuration, you won't see them.
> I'm very sorry but I cannot test my-self because I'm leaving now. I
> have just seen the patch applied in git tree and this thing come to my
> mind.
It does not make them pushed. It just allows pushing them--which is good
thing sometimes (eg. if you use push to backup the repo).
--
Jan 'Bulb' Hudec <bulb@ucw.cz>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-05-13 7:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-11 20:35 [PATCH] Allow fetching references from any namespace Alex Riesen
2007-05-11 20:54 ` Junio C Hamano
2007-05-12 7:40 ` Alex Riesen
2007-05-12 7:55 ` Junio C Hamano
2007-05-13 3:48 ` Marco Costalba
2007-05-13 7:24 ` Jan Hudec
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).