Re: [git-users] extracting subdirectory from git repo

2013-09-18 Thread Gabriel Marchesan Almeida
That's great, thanks a lot Konstantin! On Tuesday, September 17, 2013 3:47:27 PM UTC+2, Konstantin Khomoutov wrote: On Tue, 17 Sep 2013 05:21:08 -0700 (PDT) Gabriel Marchesan Almeida gabrielm...@gmail.com javascript: wrote: I am trying to extract subdirectories from a git repo and I have

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

2013-09-19 Thread Gabriel Marchesan Almeida
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?

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

2013-09-19 Thread Gabriel Marchesan Almeida
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

[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

Re: [git-users] extracting subdirectory from git repo

2013-09-20 Thread Gabriel Marchesan Almeida
problems to figure out where the problem is coming from. Small area of my script. http://screenpresso.com/=zAske Thanks in advance for your help! On Tuesday, September 17, 2013 3:47:27 PM UTC+2, Konstantin Khomoutov wrote: On Tue, 17 Sep 2013 05:21:08 -0700 (PDT) Gabriel Marchesan Almeida

[git-users] Re: extracting subdirectory from git repo

2013-10-01 Thread Gabriel Marchesan Almeida
--branches | while read c; do git tag --contains $c; done) | sort -u /tmp/valid However, when running the bash it does not work (in the end I have /tmp/valid empty when running the script). http://pastebin.com/KTuHkAA7 On Tuesday, September 17, 2013 2:21:08 PM UTC+2, Gabriel Marchesan Almeida