* [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l'
@ 2015-06-02 16:38 Karthik Nayak
2015-06-03 16:08 ` Matthieu Moy
0 siblings, 1 reply; 5+ messages in thread
From: Karthik Nayak @ 2015-06-02 16:38 UTC (permalink / raw)
To: Git List; +Cc: Christian Couder, Matthieu Moy
Hello All,
As part of GSoC I'm working on the Unification of 'for-each-ref', 'tag -l'
and 'branch -l'. I will update the list on my weekly progress in an effort
to keep everyone updated.
Current Progress:
Currently I have been working on moving all code from 'for-each-ref' to an
independent library called 'ref-filter' which would serve as a common
library
for the unification process. 'for-each-ref' supports printing the commits
in a specified format and also various sorting optins. This would serve as a
good base for porting over these options for 'tag -l' and 'branch -l'.
I have sent v4 of my patch to the list and it can be found here:
http://article.gmane.org/gmane.comp.version-control.git/270293
I have been working on this after suggested changes, will post the next
version soon.
Work In progress:
You can follow my current progress on Github:
https://github.com/KarthikNayak/git
For now I got the '--points-at' option (prints only refs pointing to given
commit) and also '--merged' option (prints only refs whose heads are
reachable
from the given commit). These shall be forwarded to the list soon.
What to do next:
Implement '--contains' option, but the problem to be faced here is that both
'tag -l' and 'branch -l' have different implementations of the '--contains'
options. Matthieu Moy suggested that I work on the unification of these
commands
let both the implementations stay where the user can select the
implementation
to be used and that I may work on unification of these two algorithms after
the main objective of GSoC is met.
Any suggestion/changes are welcome.
--
Regards,
Karthik
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l'
2015-06-02 16:38 [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l' Karthik Nayak
@ 2015-06-03 16:08 ` Matthieu Moy
2015-06-03 16:42 ` Karthik Nayak
2015-06-03 21:08 ` Jeff King
0 siblings, 2 replies; 5+ messages in thread
From: Matthieu Moy @ 2015-06-03 16:08 UTC (permalink / raw)
To: Karthik Nayak; +Cc: Git List, Christian Couder
Karthik Nayak <karthik.188@gmail.com> writes:
> Matthieu Moy suggested that I work on the unification of these
> commands let both the implementations stay where the user can select
> the implementation to be used
Just to be clear: my advice is the above with "user" = "caller of the
API", not "human being using Git". In other words, "git branch
--contains" and "git tag --contains" would still be using two different
algorithms, but the user wouldn't notice (except for performance).
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l'
2015-06-03 16:08 ` Matthieu Moy
@ 2015-06-03 16:42 ` Karthik Nayak
2015-06-03 21:08 ` Jeff King
1 sibling, 0 replies; 5+ messages in thread
From: Karthik Nayak @ 2015-06-03 16:42 UTC (permalink / raw)
To: Matthieu Moy; +Cc: Git List, Christian Couder
On 06/03/2015 09:38 PM, Matthieu Moy wrote:
> Karthik Nayak <karthik.188@gmail.com> writes:
>
>> Matthieu Moy suggested that I work on the unification of these
>> commands let both the implementations stay where the user can select
>> the implementation to be used
>
> Just to be clear: my advice is the above with "user" = "caller of the
> API", not "human being using Git". In other words, "git branch
> --contains" and "git tag --contains" would still be using two different
> algorithms, but the user wouldn't notice (except for performance).
>
Thanks for clearing that out, I should have said "caller of the API."
--
Regards,
Karthik
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l'
2015-06-03 16:08 ` Matthieu Moy
2015-06-03 16:42 ` Karthik Nayak
@ 2015-06-03 21:08 ` Jeff King
2015-06-04 7:35 ` Karthik Nayak
1 sibling, 1 reply; 5+ messages in thread
From: Jeff King @ 2015-06-03 21:08 UTC (permalink / raw)
To: Matthieu Moy; +Cc: Karthik Nayak, Git List, Christian Couder
On Wed, Jun 03, 2015 at 06:08:50PM +0200, Matthieu Moy wrote:
> Karthik Nayak <karthik.188@gmail.com> writes:
>
> > Matthieu Moy suggested that I work on the unification of these
> > commands let both the implementations stay where the user can select
> > the implementation to be used
>
> Just to be clear: my advice is the above with "user" = "caller of the
> API", not "human being using Git". In other words, "git branch
> --contains" and "git tag --contains" would still be using two different
> algorithms, but the user wouldn't notice (except for performance).
Yeah, I think that is sensible. It should be a "feature" of the
ref-filter that can hopefully go away one day (when we have a sensible
implementation that works for both; this is something I've been meaning
to push forward, but Karthik should not have to wait on me).
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l'
2015-06-03 21:08 ` Jeff King
@ 2015-06-04 7:35 ` Karthik Nayak
0 siblings, 0 replies; 5+ messages in thread
From: Karthik Nayak @ 2015-06-04 7:35 UTC (permalink / raw)
To: Jeff King; +Cc: Git List, Christian Couder, Matthieu Moy
On 06/04/2015 02:38 AM, Jeff King wrote:
> On Wed, Jun 03, 2015 at 06:08:50PM +0200, Matthieu Moy wrote:
>
> > Karthik Nayak <karthik.188@gmail.com> writes:
> >
> >> Matthieu Moy suggested that I work on the unification of these
> >> commands let both the implementations stay where the user can select
> >> the implementation to be used
> >
> > Just to be clear: my advice is the above with "user" = "caller of the
> > API", not "human being using Git". In other words, "git branch
> > --contains" and "git tag --contains" would still be using two different
> > algorithms, but the user wouldn't notice (except for performance).
>
> Yeah, I think that is sensible. It should be a "feature" of the
> ref-filter that can hopefully go away one day (when we have a sensible
> implementation that works for both; this is something I've been meaning
> to push forward, but Karthik should not have to wait on me).
>
> -Peff
>
Sounds good, Thanks Jeff.
--
Regards,
Karthik
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-06-04 7:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-02 16:38 [GSoC] Week 1: Unification of 'for-each-ref', 'tag -l' and 'branch -l' Karthik Nayak
2015-06-03 16:08 ` Matthieu Moy
2015-06-03 16:42 ` Karthik Nayak
2015-06-03 21:08 ` Jeff King
2015-06-04 7:35 ` Karthik Nayak
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).