Re: [PATCH 5/5] completion: fix completion of certain aliases

2014-04-13 Thread Gábor Szeder
Hi, [I'm travelling, so I don't have the means to actually try out this patch, and it might take a while a to reply to any follow ups.] On Apr 10, 2014 12:03 AM, Junio C Hamano gits...@pobox.com wrote: Felipe Contreras felipe.contre...@gmail.com writes: Some commands need the first word

Re: Our official home page and logo for the Git project

2014-04-13 Thread Javier Domingo Cansino
I think it is a suitable logo. It might not be the one I would think of, but I see with good eyes using it as one of the project logos. Javier Domingo Cansino -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info

Get all tips quickly

2014-04-13 Thread Kirill Likhodedov
Hi, What is fastest possible way to get all “tips” (leafs of the Git log graph) in a Git repository with hashes of commits they point to? We at JetBrains are tuning performance of Git log integration in our IntelliJ IDEA and want to get all tips as fast as possible. Currently we use 'git log

Re: Get all tips quickly

2014-04-13 Thread Ævar Arnfjörð Bjarmason
On Sun, Apr 13, 2014 at 4:19 PM, Kirill Likhodedov kirill.likhode...@jetbrains.com wrote: Hi, What is fastest possible way to get all “tips” (leafs of the Git log graph) in a Git repository with hashes of commits they point to? Tried git for-each-ref and the various options it has? Doing

Re: Get all tips quickly

2014-04-13 Thread Michael Haggerty
On 04/13/2014 04:19 PM, Kirill Likhodedov wrote: What is fastest possible way to get all “tips” (leafs of the Git log graph) in a Git repository with hashes of commits they point to? We at JetBrains are tuning performance of Git log integration in our IntelliJ IDEA and want to get all tips

[PATCH] git-rebase: Print name of rev when using shorthand

2014-04-13 Thread Brian Gesiak
The output from a successful invocation of the shorthand command git rebase - is something like Fast-forwarded HEAD to @{-1}, which includes a relative reference to a revision. Other commands that use the shorthand -, such as git checkout -, typically display the symbolic name of the revision.

Re: What's cooking in git.git (Apr 2014, #03; Fri, 11)

2014-04-13 Thread Michael Haggerty
On 04/12/2014 12:22 AM, Junio C Hamano wrote: [...] * mh/ref-transaction (2014-04-07) 27 commits - ref_transaction_commit(): work with transaction-updates in place - struct ref_update: add a type field - struct ref_update: add a lock field - ref_transaction_commit(): simplify code using

[tig] [PATCHv2 0/3] log: colour the diffstat

2014-04-13 Thread Kumar Appaiah
These patches add colourization to the log view. They reuse the diff stat drawing functions from the diff module directly. This version just includes some code reformatting and minor fixes. Please comment on what other fixes could help. Thanks. Kumar Appaiah (3): diff: Move diff stat addition

[tig] [PATCHv2 1/3] diff: Move diff stat addition to a common function

2014-04-13 Thread Kumar Appaiah
Signed-off-by: Kumar Appaiah a.ku...@alumni.iitm.ac.in --- include/tig/diff.h | 1 + src/diff.c | 27 ++- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/include/tig/diff.h b/include/tig/diff.h index be325c4..ba40386 100644 --- a/include/tig/diff.h

[tig] [PATCHv2 2/3] diff: Move diff stat drawing to a common function

2014-04-13 Thread Kumar Appaiah
Signed-off-by: Kumar Appaiah a.ku...@alumni.iitm.ac.in --- include/tig/diff.h | 1 + src/diff.c | 30 ++ 2 files changed, 19 insertions(+), 12 deletions(-) diff --git a/include/tig/diff.h b/include/tig/diff.h index ba40386..16299fe 100644 ---

[tig] [PATCHv2 3/3] log: Colour the diff stat

2014-04-13 Thread Kumar Appaiah
This commit adds custom log_read and log_draw functions that utilize the diff stat drawing functions from the diff module. The absence of the triple hyphen separator prevents direct usage of the diff drawing functions directly. Signed-Off-By: Kumar Appaiah a.ku...@alumni.iitm.ac.in --- src/log.c