[git-users] Re: repo tool from google (android development)

2013-09-19 Thread Gabriel Marchesan Almeida
Thanks for your answer Thomas,

However this is not what I am looking for.

git-submodules  is nice when you have stable components or third party 
libraries where you can easily choose the version you want to update for 
different components. However, IFIK, it does not allow you to do changes in 
these repositories (commits, etc.), repotool from google allow you to do 
that, it basically clones different repo for you based on a so-called 
manifest file (xml file with repos information, url, etc.).

However I am wondering if it is possible to point to a given TAG or commit 
on the configuration parameters of repo tool.

If anyone knows, a small example will be very helpful. 

Thanks

On Thursday, September 19, 2013 2:26:01 PM UTC+2, Thomas Ferris Nicolaisen 
wrote:


 On Thursday, September 19, 2013 1:40:33 PM UTC+2, Gabriel Marchesan 
 Almeida wrote:

 Hi colleagues,

 Considering I have multiple repositories in my manifest file.

 Do you know any way I could refer to different commit hashs on each one 
 of the repositories ?

 i.e

 repo1 hash #eee33343443
 repo2 hash #3f3f3f323f

 repoN hash #hjashdjhjh

 or if I could even use TAGS for that?


 Sounds like a typical case for git submodules: 
 https://www.kernel.org/pub/software/scm/git/docs/git-submodule.html 


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] Re: repo tool from google (android development)

2013-09-19 Thread Gabriel Marchesan Almeida
I just found this very interesting..

I think revision would do the trick:

http://stackoverflow.com/questions/10818758/repo-init-a-particular-commit

Hope it helps!

On Thursday, September 19, 2013 2:39:52 PM UTC+2, Gabriel Marchesan Almeida 
wrote:

 Thanks for your answer Thomas,

 However this is not what I am looking for.

 git-submodules  is nice when you have stable components or third party 
 libraries where you can easily choose the version you want to update for 
 different components. However, IFIK, it does not allow you to do changes in 
 these repositories (commits, etc.), repotool from google allow you to do 
 that, it basically clones different repo for you based on a so-called 
 manifest file (xml file with repos information, url, etc.).

 However I am wondering if it is possible to point to a given TAG or commit 
 on the configuration parameters of repo tool.

 If anyone knows, a small example will be very helpful. 

 Thanks

 On Thursday, September 19, 2013 2:26:01 PM UTC+2, Thomas Ferris Nicolaisen 
 wrote:


 On Thursday, September 19, 2013 1:40:33 PM UTC+2, Gabriel Marchesan 
 Almeida wrote:

 Hi colleagues,

 Considering I have multiple repositories in my manifest file.

 Do you know any way I could refer to different commit hashs on each one 
 of the repositories ?

 i.e

 repo1 hash #eee33343443
 repo2 hash #3f3f3f323f

 repoN hash #hjashdjhjh

 or if I could even use TAGS for that?


 Sounds like a typical case for git submodules: 
 https://www.kernel.org/pub/software/scm/git/docs/git-submodule.html 



-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Re: repo tool from google (android development)

2013-09-19 Thread Gergely Polonkai
On 19 Sep 2013 14:39, Gabriel Marchesan Almeida 
gabrielmarche...@gmail.com wrote:

 Thanks for your answer Thomas,

 However this is not what I am looking for.

 git-submodules  is nice when you have stable components or third party
libraries where you can easily choose the version you want to update for
different components. However, IFIK, it does not allow you to do changes in
these repositories (commits, etc.),

yes you can. Submodules are actually somewhat repo in a repo. You can do
anything within that is possible with a normal repo.

 repotool from google allow you to do that, it basically clones different
repo for you based on a so-called manifest file (xml file with repos
information, url, etc.).

 However I am wondering if it is possible to point to a given TAG or
commit on the configuration parameters of repo tool.

 If anyone knows, a small example will be very helpful.

 Thanks


 On Thursday, September 19, 2013 2:26:01 PM UTC+2, Thomas Ferris
Nicolaisen wrote:


 On Thursday, September 19, 2013 1:40:33 PM UTC+2, Gabriel Marchesan
Almeida wrote:

 Hi colleagues,

 Considering I have multiple repositories in my manifest file.

 Do you know any way I could refer to different commit hashs on each one
of the repositories ?

 i.e

 repo1 hash #eee33343443
 repo2 hash #3f3f3f323f

 repoN hash #hjashdjhjh

 or if I could even use TAGS for that?


 Sounds like a typical case for git submodules:
https://www.kernel.org/pub/software/scm/git/docs/git-submodule.html

 --
 You received this message because you are subscribed to the Google Groups
Git for human beings group.
 To unsubscribe from this group and stop receiving emails from it, send an
email to git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.