git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* tracking a file from another project in my own project
@ 2008-01-22  8:35 picca
  2008-01-22  9:20 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: picca @ 2008-01-22  8:35 UTC (permalink / raw)
  To: git

Hello

Supposed I want to use the strbuf.c and strbuf.h file of git.git in my
own project.git. Is it possible to configure git to track this
particular files when I do a git pull?

This way all strbug bugs corrected in git.git will be apply
automatically to my own project.

Thank you.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: tracking a file from another project in my own project
  2008-01-22  8:35 tracking a file from another project in my own project picca
@ 2008-01-22  9:20 ` Junio C Hamano
  2008-01-22 13:56   ` picca
  0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2008-01-22  9:20 UTC (permalink / raw)
  To: picca; +Cc: git

picca <picca@synchrotron-soleil.Fr> writes:

> This way all strbug bugs corrected in git.git will be apply
> automatically to my own project.

If I were you I'd probably just keep git.git as a submodule in
your project and have two symlinks from your toplevel pointing
at git.git/strbuf.[ch] (or from src/ to ../git.git/strbuf.[ch]).

Or "merge -s subtree".

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: tracking a file from another project in my own project
  2008-01-22  9:20 ` Junio C Hamano
@ 2008-01-22 13:56   ` picca
  2008-01-22 15:23     ` Jakub Narebski
  0 siblings, 1 reply; 6+ messages in thread
From: picca @ 2008-01-22 13:56 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

On Tue, 22 Jan 2008 01:20:41 -0800
Junio C Hamano <gitster@pobox.com> wrote:

> If I were you I'd probably just keep git.git as a submodule in
> your project and have two symlinks from your toplevel pointing
> at git.git/strbuf.[ch] (or from src/ to ../git.git/strbuf.[ch]).

So submodule is a requirement to achieved this comportment ?

If someone want to clone my project.git, must he also clone the
git.git project or he loose the ability to follow by it's own the
strbuf.[ch] file ?

> Or "merge -s subtree".

I red the git help merge -s explanation but I do not understand how
it can help in my case.

Thanks

Frederic

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: tracking a file from another project in my own project
  2008-01-22 13:56   ` picca
@ 2008-01-22 15:23     ` Jakub Narebski
  2008-01-22 17:30       ` Sergei Organov
  0 siblings, 1 reply; 6+ messages in thread
From: Jakub Narebski @ 2008-01-22 15:23 UTC (permalink / raw)
  To: picca; +Cc: Junio C Hamano, git

picca <picca@synchrotron-soleil.Fr> writes:

> On Tue, 22 Jan 2008 01:20:41 -0800
> Junio C Hamano <gitster@pobox.com> wrote:
> 
> > If I were you I'd probably just keep git.git as a submodule in
> > your project and have two symlinks from your toplevel pointing
> > at git.git/strbuf.[ch] (or from src/ to ../git.git/strbuf.[ch]).
> 
> So submodule is a requirement to achieved this comportment ?

If you want to have strbuf.[ch] automatically tracked from git.git
the you would have to have git.git project somehow embedded in your
repository.  Using submodules is one solution.

Currently there is no way to do "sparse checkout", i.e. automatically
checkout only needed files (even if git.git clone has all the
objects), but feel free to implement it... ;-) (just kidding).

Or you can try to convince strbuf authors to make it into separate
project, which would be fetched into git.git like gitk was.  And you
could then pull from this project directly or indirectly (submodule)
into your project.
  
> If someone want to clone my project.git, must he also clone the
> git.git project or he loose the ability to follow by it's own the
> strbuf.[ch] file ?

True.

> > Or "merge -s subtree".
> 
> I read the git help merge -s explanation but I do not understand how
> it can help in my case.

Using subtree merge strategy you can join histories of your project
and git.git, embedding git.git as a subdirectory like gitk and git-gui
are now in git.git.  It is an alternative to using submodules.

-- 
Jakub Narebski
Poland
ShadeHawk on #git

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: tracking a file from another project in my own project
  2008-01-22 15:23     ` Jakub Narebski
@ 2008-01-22 17:30       ` Sergei Organov
  2008-01-22 18:34         ` Jakub Narebski
  0 siblings, 1 reply; 6+ messages in thread
From: Sergei Organov @ 2008-01-22 17:30 UTC (permalink / raw)
  To: Jakub Narebski; +Cc: picca, Junio C Hamano, git

Jakub Narebski <jnareb@gmail.com> writes:
> picca <picca@synchrotron-soleil.Fr> writes:
>> Junio C Hamano <gitster@pobox.com> wrote:

[...]

>> > Or "merge -s subtree".
>> 
>> I read the git help merge -s explanation but I do not understand how
>> it can help in my case.
>
> Using subtree merge strategy you can join histories of your project
> and git.git, embedding git.git as a subdirectory like gitk and git-gui
> are now in git.git.  It is an alternative to using submodules.

Is subtree merge strategy documented?

$ grep subtree Documentation/merge-strategies.txt
$

-- Sergei.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: tracking a file from another project in my own project
  2008-01-22 17:30       ` Sergei Organov
@ 2008-01-22 18:34         ` Jakub Narebski
  0 siblings, 0 replies; 6+ messages in thread
From: Jakub Narebski @ 2008-01-22 18:34 UTC (permalink / raw)
  To: Sergei Organov; +Cc: picca, Junio C Hamano, git

Sergei Organov wrote:
> Jakub Narebski <jnareb@gmail.com> writes:
>> picca <picca@synchrotron-soleil.Fr> writes:
>>> Junio C Hamano <gitster@pobox.com> wrote:
> 
> [...]
> 
>>>> Or "merge -s subtree".
>>> 
>>> I read the git help merge -s explanation but I do not understand how
>>> it can help in my case.
>>
>> Using subtree merge strategy you can join histories of your project
>> and git.git, embedding git.git as a subdirectory like gitk and
>> git-gui are now in git.git.  It is an alternative to using
>> submodules. 
> 
> Is subtree merge strategy documented?
> 
> $ grep subtree Documentation/merge-strategies.txt
> $

Documentation/howto/using-merge-subtree.txt

But I agree that it should be also described, or at least mentioned
in Documentation/merge-strategies.txt
-- 
Jakub Narebski
Poland

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-01-22 18:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-22  8:35 tracking a file from another project in my own project picca
2008-01-22  9:20 ` Junio C Hamano
2008-01-22 13:56   ` picca
2008-01-22 15:23     ` Jakub Narebski
2008-01-22 17:30       ` Sergei Organov
2008-01-22 18:34         ` Jakub Narebski

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).