Re: [PATCH] builtin/notes: remove unnecessary free

2018-11-11 Thread Johan Herland
Signed-off-by: Carlo Marcelo Arenas Belón Signed-off-by: Johan Herland > --- > builtin/notes.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/builtin/notes.c b/builtin/notes.c > index c05cd004ab..68062f7475 100644 > --- a/builtin/notes.c > +++

Re: [PATCH] notes: send "Automatic notes merge failed" messages to stderr

2017-11-15 Thread Johan Herland
On Tue, Nov 14, 2017 at 5:17 PM, Todd Zullinger wrote: > All other error messages from notes use stderr. Do the same when > alerting users of an unresolved notes merge. > > Fix the output redirection in t3310 and t3320 as well. Previously, the > tests directed output to a file, but stderr was ei

Re: [PATCH] t/lib-gpg: fix gpgconf stderr redirect to /dev/null

2017-11-14 Thread Johan Herland
ed a commit with these changes and confirmed the > test suite passes, in case we get an ACK from Johan. ACK :-) Error messages should go to stderr, and redirection in the tests should be fixed. ...Johan -- Johan Herland, www.herland.net

Re: [PATCH 00/12] Clean up notes-related code around `load_subtree()`

2017-08-26 Thread Johan Herland
On Sat, Aug 26, 2017 at 10:28 AM, Michael Haggerty wrote: [...] > plenty that could be cleaned up in the area: > > * Make macro `GIT_NIBBLE` safer by adding some parentheses > * Remove some dead code > * Fix some memory leaks > * Fix some obsolete and incorrect comments > * Reject "notes" that are

Re: [PATCH] notes: Fix note_tree_consolidate not to break the note_tree structure

2017-04-07 Thread Johan Herland
ET_PTR_TYPE(p) == PTR_TYPE_INTERNAL)) + return -2; /* Cannot move int_nodes within the tree. */ for a more optimal handling of subtree nodes in this scenario. Have fun! :) ...Johan > /* replace tree with p in parent[index] */ > parent->a[index] = p; > free(tree); > -- > 2.12.1.dirty > -- Johan Herland, www.herland.net

Re: config for `format-patch --notes`?

2016-12-21 Thread Johan Herland
ect` option for this. >From git-config(1): branch..description Branch description, can be edited with git branch --edit-description. Branch description is automatically added in the format-patch cover letter or request-pull summary. ...Johan -- Johan Herland, www.herland.net

Re: [PATCH] fast-import: properly fanout notes when tree is imported

2016-12-19 Thread Johan Herland
behaviour happens when using the filemodify command to import > subdirectories. > > This change makes do_change_note_fanount call load_tree() whenever the > tree_entry it is given has no tree loaded, making all cases handled > equally. > > Signed-off-by: Mike Hommey Acked-by: Johan Herland

Re: [PATCH] push: Re-include "push.default=tracking" in the documentation

2016-10-06 Thread Johan Herland
warn or die nowadays if this option is in the > config, but I had some old config of mine use this option, I'd > forgotten that it was a synonym, and nothing in git's documentation > mentioned that. > > That's bad, either we shouldn't support it at all, or we shou

Re: What is an efficient way to get all blobs / trees that have notes attached?

2016-04-04 Thread Johan Herland
On Mon, Apr 4, 2016 at 9:46 AM, Sebastian Schuberth wrote: > On Fri, Apr 1, 2016 at 2:16 PM, Johan Herland wrote: >>> 3) Recursively list all blobs / trees (git-ls-tree) and look whether an >>> object's hash is conatined in our table to get its notes. >>> >

Re: What is an efficient way to get all blobs / trees that have notes attached?

2016-04-01 Thread Johan Herland
test "$type" != "commit" then echo "$annotated_obj: $type" fi done done Can probably be made even faster by using the --batch option to cat-file... ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this

Re: What is an efficient way to get all blobs / trees that have notes attached?

2016-04-01 Thread Johan Herland
On Fri, Apr 1, 2016 at 2:16 PM, Johan Herland wrote: > for notes_ref in $(git for-each-ref refs/notes | cut -c 49-) > do > echo "--- $notes_ref ---" > for annotated_obj in $(git notes --ref=$notes_ref list | cut -c 41-) > do > type=$(git

Re: [PATCH] notes: allow merging from arbitrary references

2015-11-18 Thread Johan Herland
eems ok enough to > me. Yes, given $whatever, we should first lookup $whatever, and only failing that, we should try refs/notes/$whatever. Maybe it's also worth trying refs/$whatever (before refs/notes/$whatever), since that would be consistent with what's currently done for o

Re: [PATCH] notes: allow merging from arbitrary references

2015-11-15 Thread Johan Herland
On Mon, Nov 16, 2015 at 12:23 AM, Jacob Keller wrote: > On Sun, Nov 15, 2015 at 2:14 PM, Johan Herland wrote: >> A related topic that has been discussed (although I cannot remember if >> any conclusion was reached) is whether to allow more notes operations >> - spe

Re: [PATCH] notes: allow merging from arbitrary references

2015-11-15 Thread Johan Herland
should also become possible, although I haven't thoroughly examined all implications. ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] Fix `git rev-list --show-notes HEAD` when there are no notes

2015-08-22 Thread Johan Herland
re are no notes whatsoever, this variable is still > `NULL`, even after initialization. > > So let's be graceful and just return if that data structure is `NULL`. > > Reported in https://github.com/msysgit/git/issues/363. > > Signed-off-by: Johannes Schindelin Ac

Re: [PATCH v8 8/8] notes: teach git-notes about notes..mergeStrategy option

2015-08-17 Thread Johan Herland
more general "notes.mergeStrategy". Otherwise, the series (except possibly #4/#5, see separate discussion) looks good to me. ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v8 4/8] notes: allow use of the "rewrite" terminology for merge strategies

2015-08-17 Thread Johan Herland
..Johan > Add tests for the new synonyms. > > Teaching rewrite how to understand merge terminology is left for a > following patch. > > Signed-off-by: Jacob Keller -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git&quo

Re: [PATCH v7 1/4] notes: document cat_sort_uniq rewriteMode

2015-08-15 Thread Johan Herland
le the "overwrite", which > is basically a synonym of, I think "theirs" depending on the direction > of the "merge". Correct. > I don't know if re-write actually supports manual mode at all! It doesn't. > Maybe we could make merge support

Re: [PATCH v7 4/4] notes: teach git-notes about notes..mergestrategy option

2015-08-15 Thread Johan Herland
seful here, methinks: must be the short name of a ref under refs/notes/, e.g. for configuring the merge strategy for refs/notes/commits, notes.commits.mergeStrategy must be set. Otherwise, the patch looks good to me. ...Johan -- Johan Herland, www.herland.net -- To unsubscribe f

Re: [PATCH v7 3/4] notes: add notes.mergestrategy option to select default strategy

2015-08-15 Thread Johan Herland
ergestrategy:: Same here. > + Which merge strategy to choose by default when resolving notes > + conflicts. Must be one of `manual`, `ours`, `theirs`, `union`, > + or `cat_sort_uniq`. Defaults to `manual`. See "NOTES MERGE > + STRATEGIES" section a

Re: enhanced remote ref namespaces

2015-08-12 Thread Johan Herland
t; think we can maintain expectations for the general user but I feel > that any change here will break *someones* scripts. As I said above: Punt on tags for now, and you might be able to not break anyone's scripts (and if you do, it's probably a poorly written script). Provided that y

Re: [PATCH v4 4/4] notes: teach git-notes about notes..merge option

2015-08-12 Thread Johan Herland
gt; enforce these values always are fully qualified and begin with refs. > Otherwise, use of --refs and the environment variable don't allow the > same formats. Agreed. ...Johan > Regards, > Jake > > [1] 8ef313e1ec3b ("builtin/notes.c: Split notes ref DWIMm

Re: [PATCH v4 4/4] notes: teach git-notes about notes..merge option

2015-08-12 Thread Johan Herland
On Wed, Aug 12, 2015 at 4:26 AM, Junio C Hamano wrote: > Johan Herland writes: >> I know that we don't yet have a "proper" place to put remote notes refs, >> but the in notes..merge _must_ be a "local" notes ref (you even >> use the notation in t

Re: [PATCH v4 1/4] notes: document cat_sort_uniq rewriteMode

2015-08-11 Thread Johan Herland
On Tue, Aug 11, 2015 at 10:57 PM, Jacob Keller wrote: > From: Jacob Keller > > Teach documentation about the cat_sort_uniq rewriteMode that got added > at the same time as the equivalent merge strategy. > > Signed-off-by: Jacob Keller Reviewed-by: Johan Herland

Re: [PATCH v4 2/4] notes: add tests for --commit/--abort/--strategy exclusivity

2015-08-11 Thread Johan Herland
On Tue, Aug 11, 2015 at 10:57 PM, Jacob Keller wrote: > From: Jacob Keller > > Add new tests to ensure that --commit, --abort, and --strategy are > mutually exclusive. > > Signed-off-by: Jacob Keller Reviewed-by: Johan Herland -- Johan Herland, www.herland.net -- To uns

Re: [PATCH v4 4/4] notes: teach git-notes about notes..merge option

2015-08-11 Thread Johan Herland
tegy instead? Or even better, take inspiration from branch..mergeoptions, and provide notes..mergeoptions instead, which you can then set like: git config notes.foo.mergeoptions "--strategy=cat_sort_uniq" Even though 'git notes merge' don't yet accept any other options that should

Re: [PATCH v4 3/4] notes: add notes.merge option to select default strategy

2015-08-11 Thread Johan Herland
s(git_notes_merge_usage, options); > } Do you need to look at the notes.merge config variable at all if -s/--strategy is given? I'd expect the above to rather look something like: if (strategy) { if (parse_notes_strategy(strategy, &o.strategy)) { error(&

Re: [PATCH v6 2/2] notes: handle multiple worktrees

2015-08-11 Thread Johan Herland
r Still looks good to me, AFAICS. Feel free to add my Reviewed-by. ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v4 2/2] notes: handle multiple worktrees

2015-08-01 Thread Johan Herland
in-progress > for" err > + ) && > + test_path_is_missing .git/worktrees/worktree/NOTES_MERGE_REF > +' > + > +test_expect_success 'merge z into x while mid-merge on y succeeds' ' > + ( > + cd worktree2 && > +

Re: [PATCH v2 0/2] notes: add notes.merge strategy option

2015-08-01 Thread Johan Herland
d workflow is to base your patch series on master or next, as those do not jump around quite as much as pu does. > > Jacob Keller (2): > notes: document cat_sort_uniq rewriteMode > notes: add notes.merge option to select default strategy Both patches Acked-by: Johan Her

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-29 Thread Johan Herland
On Wed, Jul 29, 2015 at 6:37 PM, Junio C Hamano wrote: > Johan Herland writes: >> On Wed, Jul 29, 2015 at 7:01 AM, Junio C Hamano wrote: >>> Johan Herland writes: >>> >>>> I believe it is a bad compromise. It complicates the code, and it >>

Re: [PATCH v4 1/5] refs: Introduce pseudoref and per-worktree ref concepts

2015-07-29 Thread Johan Herland
On Wed, Jul 29, 2015 at 7:58 PM, David Turner wrote: > + specially by git. Psuedorefs both have names that are all-caps, s/Psuedo/Pseudo/ ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a mess

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-29 Thread Johan Herland
On Wed, Jul 29, 2015 at 7:01 AM, Junio C Hamano wrote: > Johan Herland writes: > >> I believe it is a bad compromise. It complicates the code, and it >> provides a concurrent notes merges that is unnecessarily tied to (and >> dependent on) worktrees. For example,

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-28 Thread Johan Herland
lso trying to do: David's topic should not have to deal with NOTES_MERGE_* at all. Simply leave it all as something that belongs in $GIT_COMMON_DIR, and let's solve concurrent unrelated notes merges as a wholly independent, separate topic. ...Johan -- Johan Herland, www.herland.net --

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-28 Thread Johan Herland
linked worktree effort, so this language is new to me. My apologies). ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-28 Thread Johan Herland
On Wed, Jul 29, 2015 at 2:33 AM, Junio C Hamano wrote: > Johan Herland writes: > >> Here is where we start to differ. I would say that starting a notes >> merge is completely unrelated to your worktree. Consider this: >> ... >> This is not the case for notes merges.

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-28 Thread Johan Herland
On Wed, Jul 29, 2015 at 2:56 AM, Michael Haggerty wrote: > Johan Herland writes: >> Here is where we start to differ. I would say that starting a notes >> merge is completely unrelated to your worktree. Consider this: > > It sounds like what a notes merge really wants is

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-28 Thread Johan Herland
On Wed, Jul 29, 2015 at 12:52 AM, Junio C Hamano wrote: > Johan Herland writes: >> However, in any case, notes merges are always per _repo_ and never per >> _worktree_, so this is all unrelated to the current patch/discussion >> AFAICS. > > Thanks for chiming in, b

Re: [PATCH] notes: handle multiple worktrees

2015-07-28 Thread Johan Herland
On Wed, Jul 29, 2015 at 12:12 AM, Junio C Hamano wrote: > David Turner writes: >> Prevent merges to the same notes branch from different worktrees. >> Before creating NOTES_MERGE_REF, check NOTES_MERGE_REF using the same >> code we use to check that two HEADs in different worktrees don't point >>

Re: [PATCH v3 2/6] notes: replace pseudorefs with real refs

2015-07-28 Thread Johan Herland
TIAL .git/NOTES_MERGE_WORKTREE you would have (assuming NOTES_MERGE_REF == refs/notes/foo): .git/NOTES_MERGE/refs/notes/foo/REF .git/NOTES_MERGE/refs/notes/foo/PARTIAL .git/NOTES_MERGE/refs/notes/foo/WORKTREE and then a simultaneous notes-merge on a different notes ref (refs/notes/bar) woul

Re: [PATCH v4] notes: Allow treeish expressions as notes ref

2015-07-10 Thread Johan Herland
patch comes with no tests. I'd like at least a couple of tests thrown in there to verify correctness; e.g. reading notes from refs/notes/commits^{tree} shall succeed, and trying to write notes to refs/notes/commits^{tree} shall fail. ...Johan -- Johan Herland, www.herland.net -- To unsubscri

Re: [PATCH v3] notes: Allow committish expressions as notes ref

2015-07-09 Thread Johan Herland
er > the notes tree is intended to be used for reads only, or will be updated, > a flag is added. > > This has the side effect of enabling the use of committish as notes refs > in commands allowing them, e.g. git log --notes=foo@{1}. > > Signed-off-by: Mike Hommey Reviewed-by: J

Re: [PATCH] notes: Use get_sha1_committish instead of read_ref in init_notes()

2015-06-17 Thread Johan Herland
side the notes.h API (see commit_notes() in notes-utils.h/c), so there might be room for more consolidation/refactoring here... ...Johan -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: gitk won't show notes?

2015-04-14 Thread Johan Herland
all the current notes? Yes. (if not, that's a bug and should be fixed). ...Johan > > It looks like it is from the documentation. > Anyway let's add some people in Cc in case they could help. -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line &q

Re: Notes do not follow rebase

2015-04-08 Thread Johan Herland
be copied to the new commit during an ammend/rebase? It depends. Which notes do you want copied? (i.e. from which notes ref?) Please have a look at the notes.rewriteRef config option (documented in the git-config and git-notes manual pages) ...Johan -- Johan Herland, www.herland.net -- To unsu

Re: [PATCH 3/8] t3305: fix ignored exit code inside loop

2015-03-25 Thread Johan Herland
same > problem; it is meant to exit the loop early at a certain > number of iterations. We can bump it into the conditional of > the loop to make this more obvious. > > Signed-off-by: Jeff King Acked-by: Johan Herland -- Johan Herland, www.herland.net -- To unsubscribe from

Re: [PATCH] diff --shortstat --dirstat: remove duplicate output

2015-02-28 Thread Johan Herland
On Sat, Feb 28, 2015 at 2:19 PM, Mårten Kongstad wrote: [...] > Signed-off-by: Mårten Kongstad Acked-by: Johan Herland -- Johan Herland, www.herland.net -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org M

Re: [PATCH] Fix unclosed here document in t3301.sh

2015-01-22 Thread Johan Herland
t; > Signed-off-by: Kacper Kornet Acked-by: Johan Herland > --- > t/t3301-notes.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh > index 245406a..433f925 100755 > --- a/t/t3301-notes.sh > +++ b/t/t3301-notes

Re: A better git log --graph?

2015-01-07 Thread Johan Herland
o graph the history using something > that is not based on git log --graph? > > I've seen a couple of graphviz-based ones, but both failed to work out > of the box for me. > > Thanks a lot for any pointer. > > -- > To unsubscribe from this list: send the line &q

Re: [PATCH v2 2/2] t/t3308-notes-merge.sh: succeed with relaxed notes refs

2015-01-06 Thread Johan Herland
(This addresses some smaller specific questions from Kyle, and is not an attempt to take focus away from the main direction of this thread) On Jan 6, 2015 1:27 PM, "Kyle J. McKay" wrote: > On Jan 6, 2015, at 02:20, Junio C Hamano wrote: [...] > At the point the dropped line runs, core.notesRef

Re: [PATCH v2 2/2] t/t3308-notes-merge.sh: succeed with relaxed notes refs

2015-01-06 Thread Johan Herland
itelist _without_ breaking those >> who have already started using refs/remote-notes/*. That is why >> I said whitelist is preferrable than blacklist. I agree that a whitelist is preferable to a blacklist. > A whitelist solves issue (1) but is no help for issue (2) unless some > a

Re: fast-import's notemodify doesn't work the same as git notes

2015-01-04 Thread Johan Herland
, because think about what happens on the next fanout with > fast-import... adding one note would need to create millions of trees. True, this is a good illustration of the difference between the notes code in fast-import and git-notes. It might be possible to change the fast-import code to wor

[RFC/PATCHv0 4/4] fast-import.c:note_change_n(): Rename commit_* to target_*

2015-01-04 Thread Johan Herland
ag' command, and we also the BNF at the top of fast-import.c needs corresponding updates. Signed-off-by: Johan Herland --- fast-import.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/fast-import.c b/fast-import.c index b6df00b..4ef7a95 100644

[RFC/PATCHv0 2/4] fast-import.c:do_change_note_fanout(): Also apply load_tree() to initial root

2015-01-04 Thread Johan Herland
mand with the following 'filemodify' "hack" to pre-load the existing notes tree without using it as a parent: M 04 refs/notes/foo^{tree} \n Discovered-by: Mike Hommey Signed-off-by: Johan Herland --- fast-import.c | 5 +++-- 1 file changed, 3 insertions(+), 2

[RFC/PATCHv0 3/4] fast-import: Support adding notes to non-commits

2015-01-04 Thread Johan Herland
"git notes" allows adding notes to non-commit objects, but fast-import restricts the 'notemodify' command to only add notes for commit objects. Remove that silly restriction from fast-import. Suggested-by: Mike Hommey Signed-off-by: Johan Herland --- fast-import.c

[RFC/PATCHv0 1/4] fast-import.c:do_change_note_fanout(): Remove unneeded local var 't'

2015-01-04 Thread Johan Herland
e t at the end of the for loop body, which is ugly and brittle. Simply use root->tree directly instead, and remote the t shorthand. Signed-off-by: Johan Herland --- fast-import.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/fast-import.c b/fast-import.c inde

Re: Re: Extended splitting for "git add --interactive"

2014-11-27 Thread Johan Herland
IT -AAA Stage this hunk? YES -BBB Stage this hunk? NO +CCC Stage this hunk? YES +DDD Stage this hunk? NO This would allow me to stage the following: -AAA +CCC and leave the following unstaged: -BBB +DDD but would also allow any other combination. ...Johan

Re: "git notes show" is orders of magnitude slower than doing it manually with ls-tree and cat-file

2014-11-26 Thread Johan Herland
isting tree (and number of > notes!) from a commit, but does not add it as a parent. AFAIK, > fast-import doesn't have a way to do that. > > Probably the simplest thing is to build it with history via fast-import, > and then just truncate the history at the end with: >

Re: how to reduce disk usage for large .git dirs?

2014-11-13 Thread Johan Herland
from repo-master (if those objects happen to be referenced from repo-branchA|B). If you want to prevent the repos growing in size, you must devise a way to add new objects into repo-master before repo-branchA|B. (e.g. a nightly cron-job in repo-master that fetches from origin), so that when repo-bran

Re: [PATCHv5 9/9] t3301: Modernize

2014-11-12 Thread Johan Herland
On Wed, Nov 12, 2014 at 10:18 PM, Junio C Hamano wrote: > Johan Herland writes: >> On Wed, Nov 12, 2014 at 2:57 AM, Eric Sunshine >> wrote: >>> On Tue, Nov 11, 2014 at 7:40 PM, Johan Herland wrote: >>>> + test_line_count = 1 actual >>> >&

Re: [PATCHv5 9/9] t3301: Modernize

2014-11-12 Thread Johan Herland
On Wed, Nov 12, 2014 at 2:57 AM, Eric Sunshine wrote: > On Tue, Nov 11, 2014 at 7:40 PM, Johan Herland wrote: >> + test_line_count = 1 actual > > Broken &&-chain. This problem is repeated each place use invoke > test_line_count(). Thanks. Fixed in the next itera

[PATCHv5 9/9] t3301: Modernize

2014-11-11 Thread Johan Herland
that unnecessarily split setup and verification. Improved-by: Eric Sunshine Improved-by: Junio C Hamano Improved-by: Michael Blume Improved-by: Jeff King Signed-off-by: Johan Herland --- t/t3301-notes.sh | 1300 +- 1 file changed, 601 inserti

[PATCHv5 2/9] t3301: Verify that 'git notes' removes empty notes by default

2014-11-11 Thread Johan Herland
Add test cases documenting the current behavior when trying to add/append/edit empty notes. This is in preparation for adding --allow-empty; to allow empty notes to be stored. Improved-by: Eric Sunshine Improved-by: Junio C Hamano Signed-off-by: Johan Herland --- t/t3301-notes.sh | 27

[PATCHv5 7/9] builtin/notes: Add --allow-empty, to allow storing empty notes

2014-11-11 Thread Johan Herland
o C Hamano Signed-off-by: Johan Herland --- Documentation/git-notes.txt | 12 builtin/notes.c | 17 +++-- t/t3301-notes.sh| 10 +- 3 files changed, 28 insertions(+), 11 deletions(-) diff --git a/Documentation/git-notes.txt b/Documentation/git

[PATCHv5 1/9] builtin/notes: Fix premature failure when trying to add the empty blob

2014-11-11 Thread Johan Herland
given (e.g. using -m "" or -F /dev/null). The next patch contains a test that verifies the fixed behavior. Found-by: Eric Sunshine Signed-off-by: Johan Herland --- builtin/notes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/notes.c b/builtin/notes.c ind

[PATCHv5 8/9] notes: Empty notes should be shown by 'git log'

2014-11-11 Thread Johan Herland
If the user has gone through the trouble of explicitly adding an empty note, then "git log" should not silently skip it (as if it didn't exist). Signed-off-by: Johan Herland --- notes.c | 3 +-- t/t3301-notes.sh | 12 2 files changed, 13 insertions(

[PATCHv5 5/9] builtin/notes: Simplify early exit code in add()

2014-11-11 Thread Johan Herland
Remove the need for 'retval' and the unnecessary goto. Also reorganize to only call free_note_data() is actually needed. Improved-by: Junio C Hamano Signed-off-by: Johan Herland --- builtin/notes.c | 35 +-- 1 file changed, 17 insertions(+), 18

[PATCHv5 6/9] builtin/notes: Split create_note() to clarify add vs. remove logic

2014-11-11 Thread Johan Herland
_edit()), keeping the logic for writing the actual note object in a separate function: write_note_data(). Suggested-by: Junio C Hamano Signed-off-by: Johan Herland --- builtin/notes.c | 103 +--- 1 file changed, 54 insertions(+), 49 deletions(-)

[PATCHv5 4/9] builtin/notes: Refactor note file path into struct note_data

2014-11-11 Thread Johan Herland
Move the 'path' variable from create_note() and into the note_data struct. Unify cleanup of note_data objects with a free_note_data() function. This might not make too much sense on its own, but it makes the future refactoring of create_note() considerably cleaner. Signed-off-by: Joh

[PATCHv5 3/9] builtin/notes: Improve naming

2014-11-11 Thread Johan Herland
ntents of a note. Also rename write_note_data() to copy_obj_to_fd(), which more aptly describes what it actually does: Copying the contents of a git object (given by its SHA1) into a given file descriptor. Signed-off-by: Johan Herland --- builtin/notes.c | 109 --

[PATCHv5 0/9] Handling empty notes

2014-11-11 Thread Johan Herland
Noticed by Peff. Have fun! :) ...Johan Johan Herland (9): builtin/notes: Fix premature failure when trying to add the empty blob t3301: Verify that 'git notes' removes empty notes by default builtin/notes: Improve naming builtin/notes: Refactor note file path into struct n

Re: mac test failure -- test 3301

2014-11-11 Thread Johan Herland
On Tue, Nov 11, 2014 at 3:41 AM, Jeff King wrote: > On Tue, Nov 11, 2014 at 02:40:19AM +0100, Johan Herland wrote: >> > This and all other failures are due to the output of 'wc -l', which on >> > Mac is "{whitespace}1" rather than just "1" as i

Re: [PATCHv4 9/9] t3301: Modernize

2014-11-10 Thread Johan Herland
On Tue, Nov 11, 2014 at 2:07 AM, Eric Sunshine wrote: > On Mon, Nov 10, 2014 at 8:04 PM, Johan Herland wrote: >> On Mon, Nov 10, 2014 at 9:42 PM, Junio C Hamano wrote: >>> Johan Herland writes: >>> >>>> Make this test script appear somewhat less old-fashi

Re: mac test failure -- test 3301

2014-11-10 Thread Johan Herland
how HEAD^ @@ -102,7 +102,7 @@ test_expect_success 'can overwrite existing note with "git notes add -f -m"' ' test_expect_success 'add w/no options on existing note morphs into edit' ' MSG=b2 git notes add && test_path_is_missing .git/NOTES_

Re: [PATCHv4 9/9] t3301: Modernize

2014-11-10 Thread Johan Herland
On Mon, Nov 10, 2014 at 9:42 PM, Junio C Hamano wrote: > Johan Herland writes: > >> Make this test script appear somewhat less old-fashioned: >> - Use test helper functions: >> - write_script >> - test_commit >> - test_write_lines >>

Re: [PATCHv4 5/9] builtin/notes: Simplify early exit code in add()

2014-11-10 Thread Johan Herland
On Mon, Nov 10, 2014 at 9:36 PM, Junio C Hamano wrote: > Johan Herland writes: > >> Signed-off-by: Johan Herland >> --- >> builtin/notes.c | 12 +--- >> 1 file changed, 5 insertions(+), 7 deletions(-) >> >> diff --git a/builtin/notes.c b/builti

[PATCHv4 7/9] builtin/notes: Add --allow-empty, to allow storing empty notes

2014-11-09 Thread Johan Herland
o C Hamano Signed-off-by: Johan Herland --- Documentation/git-notes.txt | 12 builtin/notes.c | 17 +++-- t/t3301-notes.sh| 10 +- 3 files changed, 28 insertions(+), 11 deletions(-) diff --git a/Documentation/git-notes.txt b/Documentation/git

[PATCHv4 9/9] t3301: Modernize

2014-11-09 Thread Johan Herland
mproved-by: Junio C Hamano Signed-off-by: Johan Herland --- t/t3301-notes.sh | 1148 +- 1 file changed, 522 insertions(+), 626 deletions(-) diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index 416ed9e..cd756ec 100755 --- a/t/t3301-notes.sh +++

Re: [PATCHv3 3/5] builtin/notes: Add --allow-empty, to allow storing empty notes

2014-11-09 Thread Johan Herland
On Fri, Nov 7, 2014 at 7:04 PM, Junio C Hamano wrote: > Johan Herland writes: [...] > Assuming that it is a good idea to "allow" empty notes, I think > there are two issues involved here: > > * Traditionally, feeding an empty note is taken as a request to >

[PATCHv4 8/9] notes: Empty notes should be shown by 'git log'

2014-11-09 Thread Johan Herland
If the user has gone through the trouble of explicitly adding an empty note, then "git log" should not silently skip it (as if it didn't exist). Signed-off-by: Johan Herland --- notes.c | 3 +-- t/t3301-notes.sh | 12 2 files changed, 13 insertions(

[PATCHv4 2/9] t3301: Verify that 'git notes' removes empty notes by default

2014-11-09 Thread Johan Herland
Add test cases documenting the current behavior when trying to add/append/edit empty notes. This is in preparation for adding --allow-empty; to allow empty notes to be stored. Improved-by: Eric Sunshine Improved-by: Junio C Hamano Signed-off-by: Johan Herland --- t/t3301-notes.sh | 27

[PATCHv4 4/9] builtin/notes: Refactor note file path into struct note_data

2014-11-09 Thread Johan Herland
Move the 'path' variable from create_note() and into the note_data struct. Unify cleanup of note_data objects with a free_note_data() function. This might not make too much sense on its own, but it makes the future refactoring of create_note() considerably cleaner. Signed-off-by: Joh

[PATCHv4 3/9] builtin/notes: Improve naming

2014-11-09 Thread Johan Herland
ntents of a note. Also rename write_note_data() to copy_obj_to_fd(), which more aptly describes what it actually does: Copying the contents of a git object (given by its SHA1) into a given file descriptor. Signed-off-by: Johan Herland --- builtin/notes.c | 109 --

[PATCHv4 5/9] builtin/notes: Simplify early exit code in add()

2014-11-09 Thread Johan Herland
Signed-off-by: Johan Herland --- builtin/notes.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/builtin/notes.c b/builtin/notes.c index 1017472..f1480cf 100644 --- a/builtin/notes.c +++ b/builtin/notes.c @@ -399,7 +399,7 @@ static int append_edit(int argc, const

[PATCHv4 6/9] builtin/notes: Split create_note() to clarify add vs. remove logic

2014-11-09 Thread Johan Herland
_edit()), keeping the logic for writing the actual note object in a separate function: write_note_data(). Suggested-by: Junio C Hamano Signed-off-by: Johan Herland --- builtin/notes.c | 103 +--- 1 file changed, 54 insertions(+), 49 deletions(-)

[PATCHv4 1/9] builtin/notes: Fix premature failure when trying to add the empty blob

2014-11-09 Thread Johan Herland
given (e.g. using -m "" or -F /dev/null). The next patch contains a test that verifies the fixed behavior. Found-by: Eric Sunshine Signed-off-by: Johan Herland --- builtin/notes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/notes.c b/builtin/notes.c ind

[PATCHv4 0/9] Handling empty notes

2014-11-09 Thread Johan Herland
fun! :) ...Johan Johan Herland (9): builtin/notes: Fix premature failure when trying to add the empty blob t3301: Verify that 'git notes' removes empty notes by default builtin/notes: Improve naming builtin/notes: Refactor note file path into struct note_data builtin/notes: S

[PATCHv3 4/5] notes: Empty notes should be shown by 'git log'

2014-11-07 Thread Johan Herland
If the user has gone through the trouble of explicitly adding an empty note, then "git log" should not silently skip it (as if it didn't exist). Signed-off-by: Johan Herland --- notes.c | 3 +-- t/t3301-notes.sh | 12 2 files changed, 13 insertions(

[PATCHv3 5/5] t3301: Use write_script(), nitpick whitespace

2014-11-07 Thread Johan Herland
Signed-off-by: Johan Herland --- Drop this if it's too much churn. ...Johan t/t3301-notes.sh | 254 +++ 1 file changed, 126 insertions(+), 128 deletions(-) diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index f5d8193..80caee0 100755

[PATCHv3 1/5] builtin/notes: Fix premature failure when trying to add the empty blob

2014-11-07 Thread Johan Herland
given (e.g. using -m "" or -F /dev/null). The next patch contains a test that verifies the fixed behavior. Found-by: Eric Sunshine Signed-off-by: Johan Herland --- builtin/notes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/notes.c b/builtin/notes.c ind

[PATCHv3 2/5] t3301: Verify that 'git notes' removes empty notes by default

2014-11-07 Thread Johan Herland
Add test cases documenting the current behavior when trying to add/append/edit empty notes. This is in preparation for adding --allow-empty; to allow empty notes to be stored. Improved-by: Eric Sunshine Improved-by: Junio C Hamano Signed-off-by: Johan Herland --- t/t3301-notes.sh | 27

[PATCHv3 0/5] Handling empty notes

2014-11-07 Thread Johan Herland
follow-up patch (#4) - Add a final (optional) patch with some whitespace and other cleanups in t3301. Feel free to drop this if it's too much churn. Have fun! :) ...Johan Johan Herland (5): builtin/notes: Fix premature failure when trying to add the empty blob t3301: Verify tha

[PATCHv3 3/5] builtin/notes: Add --allow-empty, to allow storing empty notes

2014-11-07 Thread Johan Herland
o C Hamano Signed-off-by: Johan Herland --- Documentation/git-notes.txt | 12 builtin/notes.c | 23 ++- t/t3301-notes.sh| 10 +- 3 files changed, 31 insertions(+), 14 deletions(-) diff --git a/Documentation/git-notes.txt b/Documen

Re: [PATCHv2 2/3] t3312-notes-empty: Test that 'git notes' removes empty notes by default

2014-11-07 Thread Johan Herland
On Wed, Nov 5, 2014 at 8:00 PM, Junio C Hamano wrote: > Johan Herland writes: >> +verify_missing() { >> + git log -1 > actual && > > Hmph, it was unclear what exactly you are trying to check with this > one and the other "git log -1 >expect_missin

[PATCHv2 2/3] t3312-notes-empty: Test that 'git notes' removes empty notes by default

2014-11-05 Thread Johan Herland
Add test cases documenting the current behavior when trying to add/append/edit empty notes. This is in preparation for adding --allow-empty; to allow empty notes to be stored. Improved-by: Eric Sunshine Signed-off-by: Johan Herland --- t/t3312-notes-empty.sh | 48

[PATCHv2 3/3] notes: Add --allow-empty, to allow storing empty notes

2014-11-05 Thread Johan Herland
altogether. Introduce the --allow-empty option to the add/append/edit subcommands, to explicitly allow an empty note to be stored into the notes tree. Also update the documentation, and add test cases for the new option. Reported-by: James H. Fisher Improved-by: Kyle J. McKay Signed-off-by: Joh

Re: [PATCH 1/2] t3312-notes-empty: Test that 'git notes' removes empty notes by default

2014-11-05 Thread Johan Herland
> Each -c/-C case fails for me when trying to read $empty_object. For example: > > fatal: Failed to read object 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391'. > not ok 5 - 'git notes add -c "$empty_blob"' removes empty note These are all fixed in the re-r

[PATCHv2 1/3] builtin/notes: Fix premature failure when trying to add the empty blob

2014-11-05 Thread Johan Herland
given (e.g. using -m "" or -F /dev/null). The next patch contains a test that verifies the fixed behavior. Found-by: Eric Sunshine Signed-off-by: Johan Herland --- builtin/notes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/notes.c b/builtin/notes.c ind

[PATCH 1/2] t3312-notes-empty: Test that 'git notes' removes empty notes by default

2014-11-04 Thread Johan Herland
Add test cases documenting the current behavior when trying to add/append/edit empty notes. This is in preparation for adding --allow-empty; to allow empty notes to be stored. Signed-off-by: Johan Herland --- t/t3312-notes-empty.sh | 58 ++ 1 file

[PATCH 2/2] notes: Add --allow-empty, to allow storing empty notes

2014-11-04 Thread Johan Herland
altogether. Introduce the --allow-empty option to the add/append/edit subcommands, to explicitly allow an empty note to be stored into the notes tree. Also update the documentation, and add test cases for the new option. Reported-by: James H. Fisher Improved-by: Kyle J. McKay Signed-off-by: Joh

  1   2   3   4   >