* deletion of branch seems to modify tag as well?
@ 2013-06-05 15:26 Lyons, Roy
2013-06-05 15:51 ` Jeff King
0 siblings, 1 reply; 3+ messages in thread
From: Lyons, Roy @ 2013-06-05 15:26 UTC (permalink / raw)
To: git@vger.kernel.org
$ git push origin :ABRANCHNAME
remote: Firing Pre - receive hook
remote:
remote:
remote: Firing Post receive hook
remote:
remote: Branch is ABRANCHNAME -- not creating Trigger file since this is not _int branch
remote: error: Trying to write ref refs/tags/ABRANCHNAME!SN-BL-20130605_100513_04363 with nonexistent object 0000000000000000000000000000000000000000
remote: fatal: refs/tags/ABRANCHNAME!SN-BL-20130605_100513_04363: cannot update the ref
To ssh://git@ourgitserver/repositoryname.git
- [deleted] ABRANCHNAME
I would not expect this behavior. Is git attempting to modify the tags associated to the HEAD commit on the branch in addition to the branch? If so, I would like to consider this a bug report...
Thanks,
Roy Lyons
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: deletion of branch seems to modify tag as well?
2013-06-05 15:26 deletion of branch seems to modify tag as well? Lyons, Roy
@ 2013-06-05 15:51 ` Jeff King
2013-06-05 15:53 ` Lyons, Roy
0 siblings, 1 reply; 3+ messages in thread
From: Jeff King @ 2013-06-05 15:51 UTC (permalink / raw)
To: Lyons, Roy; +Cc: git@vger.kernel.org
On Wed, Jun 05, 2013 at 03:26:18PM +0000, Lyons, Roy wrote:
> $ git push origin :ABRANCHNAME
> remote: Firing Pre - receive hook
> remote:
> remote:
> remote: Firing Post receive hook
> remote:
> remote: Branch is ABRANCHNAME -- not creating Trigger file since this is not _int branch
> remote: error: Trying to write ref refs/tags/ABRANCHNAME!SN-BL-20130605_100513_04363 with nonexistent object 0000000000000000000000000000000000000000
> remote: fatal: refs/tags/ABRANCHNAME!SN-BL-20130605_100513_04363: cannot update the ref
> To ssh://git@ourgitserver/repositoryname.git
> - [deleted] ABRANCHNAME
>
> I would not expect this behavior. Is git attempting to modify the
> tags associated to the HEAD commit on the branch in addition to the
> branch? If so, I would like to consider this a bug report...
I do not think git is doing anything of the sort. The output you see
above comes from custom hooks on the server. We cannot say for certain
without seeing the hook's code, but it looks like the post-receive hook
is trying to create a tag to point to the tip of every push, but whoever
wrote the hook did not take into account branch deletions (and the fact
that you cannot create a tag pointing at a deletion).
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: deletion of branch seems to modify tag as well?
2013-06-05 15:51 ` Jeff King
@ 2013-06-05 15:53 ` Lyons, Roy
0 siblings, 0 replies; 3+ messages in thread
From: Lyons, Roy @ 2013-06-05 15:53 UTC (permalink / raw)
To: git@vger.kernel.org
Excellent response. I had not even considered that the hook for creating
these tags would be in the mix.
I withdraw my bug report happily :)
Thanks,
Roy Lyons
On 6/5/13 10:51 AM, "Jeff King" <peff@peff.net> wrote:
>On Wed, Jun 05, 2013 at 03:26:18PM +0000, Lyons, Roy wrote:
>
>> $ git push origin :ABRANCHNAME
>> remote: Firing Pre - receive hook
>> remote:
>> remote:
>> remote: Firing Post receive hook
>> remote:
>> remote: Branch is ABRANCHNAME -- not creating Trigger file since this
>>is not _int branch
>> remote: error: Trying to write ref
>>refs/tags/ABRANCHNAME!SN-BL-20130605_100513_04363 with nonexistent
>>object 0000000000000000000000000000000000000000
>> remote: fatal: refs/tags/ABRANCHNAME!SN-BL-20130605_100513_04363:
>>cannot update the ref
>> To ssh://git@ourgitserver/repositoryname.git
>> - [deleted] ABRANCHNAME
>>
>> I would not expect this behavior. Is git attempting to modify the
>> tags associated to the HEAD commit on the branch in addition to the
>> branch? If so, I would like to consider this a bug report...
>
>I do not think git is doing anything of the sort. The output you see
>above comes from custom hooks on the server. We cannot say for certain
>without seeing the hook's code, but it looks like the post-receive hook
>is trying to create a tag to point to the tip of every push, but whoever
>wrote the hook did not take into account branch deletions (and the fact
>that you cannot create a tag pointing at a deletion).
>
>-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-06-05 16:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-05 15:26 deletion of branch seems to modify tag as well? Lyons, Roy
2013-06-05 15:51 ` Jeff King
2013-06-05 15:53 ` Lyons, Roy
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).