From: Adam Spiers <git@adamspiers.org>
To: git mailing list <git@vger.kernel.org>
Subject: improvements to checks for core.notesRef / GIT_NOTES_REF / --ref
Date: Mon, 29 Apr 2013 17:39:09 +0100 [thread overview]
Message-ID: <20130429163909.GA19014@pacific.linksys.moosehall> (raw)
In-Reply-To: <20130429133205.GA4672@pacific.linksys.moosehall>
On Mon, Apr 29, 2013 at 02:32:05PM +0100, Adam Spiers wrote:
> I've just written another quick wrapper around 'git notes' which makes
> it less painless to share notes to and from remote repositories:
>
> https://github.com/aspiers/git-config/blob/master/bin/git-rnotes
>
> This makes sharing of notes as easy as:
>
> git rnotes $remote push
> git rnotes $remote fetch
> git rnotes $remote merge
> git rnotes $remote pull
>
> and was born from this discussion:
>
> http://stackoverflow.com/questions/12055303/merging-git-notes-when-there-are-merge-conflicts-in-them/
>
> Once the Great Refs Namespace Debate is resolved[0], would this kind
> of UI would be a candidate for pushing into git-notes itself?
I just had a discussion on #git IRC with Thomas about how the above
wrapper uses refs/notes/$remote/commits or similar to simulate a
remote tracking branch for notes, and we agreed that it's not ideal
due to potential collisions if --ref=$remote or refs/notes/* are ever
used. As has probably been discussed already in the Great Debate,
something like refs/remote-notes/ might be a better namespace; however
the current implementation of git notes prevents this:
static struct notes_tree *init_notes_check(const char *subcommand)
{
struct notes_tree *t;
init_notes(NULL, NULL, NULL, 0);
t = &default_notes_tree;
if (prefixcmp(t->ref, "refs/notes/"))
die("Refusing to %s notes in %s (outside of refs/notes/)",
subcommand, t->ref);
return t;
}
Can we relax this to "refs/", to allow better isolation of namespaces
for remote notes? Also, the check is applied for GIT_NOTES_REF and
core.notesRef, but not for values passed via --ref. Therefore I would
propose that init_notes_check() is not only relaxed but also moved
from builtin/notes.c to notes.c, so that it can be consumed by
default_notes_ref(). Thoughts?
Also, are there any plans in the future for making "git notes merge"
provide an index, so that a proper 3-way merge with ancestor can be
done using git mergetool?
Cheers,
Adam
next prev parent reply other threads:[~2013-04-29 16:39 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-27 13:21 git-icing: sugary wrapper around git-cherry Adam Spiers
2013-04-29 13:32 ` git-rnotes: git-notes wrapper for sharing notes between repositories Adam Spiers
2013-04-29 16:39 ` Adam Spiers [this message]
2013-04-29 17:13 ` improvements to checks for core.notesRef / GIT_NOTES_REF / --ref Junio C Hamano
2013-04-29 21:40 ` Adam Spiers
2013-04-30 0:32 ` Johan Herland
2013-04-30 0:40 ` Adam Spiers
2013-09-21 17:25 ` tools for making upstreaming / backporting easier in git Adam Spiers
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130429163909.GA19014@pacific.linksys.moosehall \
--to=git@adamspiers.org \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).