[git-users] Is 'git-add' thread safe?

2016-06-13 Thread Jack Poon
hi all,

I am trying to parallelize git activities for a large git repository. 
 Would like to know if the inner core of git-add is thread-safe?  For 
example,

% git add file1 &
% git add file2 &
% git add file3 &
...
% git add file100 &

assuming file1 - file100 are large files... 

Is there a hidden switch in 'git-add' that will do multiple files in 
parallel?  For example,
% git add --thread=10 file1 file2 file3 file4  file100





-- 
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/d/optout.


[git-users] is this a git repository fatal error on centos 7

2016-06-13 Thread Chakrapani Velugubantla
hi

i have installed git version 1.8.3.1 on centos 7 ( 3.10.0-123.20.1.el7.x86_64 
)and i have updated .gitconfig file with certs ( even with cert chain)

steps did so far :

1. update .gitconfig file with 

[http]

sslCAInfo = /root/cert.pem

sslVerify = true


still seeing this issue with git ls-remote command 


fatal : https://XX@github:gitproject.git/info/refs not valid: is this a 
git repository?


wondering if there is any work around for centos 7 ?


thanks

Chakra



-- 
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/d/optout.


Re: [git-users] trouble with submodule paths

2016-06-13 Thread Derell Licht
On Sunday, June 12, 2016 at 9:49:49 AM UTC-7, Konstantin Khomoutov wrote:
>
> On Wed, 8 Jun 2016 09:40:15 -0700 (PDT) 
> Derell Licht  wrote: 
>
> > Okay, I'll study these options... Thank you! 
>
> Please share your results, when/if any. 
> I know this stuff works for "normal" URIs (those starting with 
> "http://; etc) but would like to know whether it worked for this more 
> complicated use case. 
>
> 1. https://gitlab.com/gitlab-org/gitlab-ce 
> 2. https://bonobogitserver.com/ 
> 3. https://gitweb.codeplex.com/ 
> 4. http://gitblit.com/


Thank you for these inputs!  
For now, we solved the immediate submodule-linkage problem by changing the 
submodule path in .gitmodules, to ../der_libs .
This allows both of us to successfully access the submodules for both read 
(clone, pull, etc) and write (push, etc).  This will satisfy our immediate 
need to continue with development, but on Git.  

However, we both would like to see a more-appropriate installation in 
place, with SSH authentication and such.  When I get a little free time, 
I'll look into getlab-ce...

-- 
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/d/optout.