Re: [git-users] Git and Smart HTTP

2014-04-18 Thread Konstantin Khomoutov
On Thu, 10 Apr 2014 02:15:11 -0700 (PDT) Matthew Pintor matthewpintor2...@gmail.com wrote: [...] I disabled the selinux. create git.conf in /etc/httpd/conf.d and a /var/www/gitrepo for different repositories. the content of git.conf is SetEnv GIT_PROJECT_ROOT /var/www/gitrepo Directory

Re: [git-users] MEGA MAFIA MONEY LAUNDERER DAVIDE SERRA ALGEBRIS (WELL KNOWN PEDOPHILE TOO) IS INFILTRATING PD TO KILL IT! PRO NAZIDICTATOR, PRINCIPAL OF MURDERS SLAUGHTERS, MAFIOSO, THIEF, CORRUPTO

2014-04-18 Thread Patrick Aljord
Banned, thanks. On Friday, April 18, 2014 3:28:16 PM UTC+2, Thomas Ferris Nicolaisen wrote: On Friday, April 18, 2014 1:43:15 PM UTC+2, Magnus Therning wrote: Would it not be a good idea to block this user now? /M Absolutely, I'll try pointing the list maintainer over here. Google

[git-users] How to Install Git

2014-04-18 Thread srinath0805
Hi Folks, I'm try to Git Server on my windows machine, From Google I get only how to install GIT GUI only. For testing I need to make my window machine as GIT server, can any please provide me the GIT Server S/W location and installation guide PDF or URL. Thanks in advance. -- You received

Re: [git-users] How to Install Git

2014-04-18 Thread Konstantin Khomoutov
On Fri, 18 Apr 2014 08:50:16 -0700 (PDT) srinath0...@gmail.com wrote: I'm try to Git Server on my windows machine, From Google I get only how to install GIT GUI only. For testing I need to make my window machine as GIT server, can any please provide me the GIT Server S/W location and

[git-users] Re: How to Install Git

2014-04-18 Thread Thomas Ferris Nicolaisen
On Friday, April 18, 2014 5:50:16 PM UTC+2, srina...@gmail.com wrote: I'm try to Git Server on my windows machine, From Google I get only how to install GIT GUI only. For testing I need to make my window machine as GIT server, can any please provide me the GIT Server S/W location and

[git-users] .gitignore isn't ignoring.

2014-04-18 Thread gordonleema
://groups.google.com/d/optout. attachment: SP32-20140418-120017.png

Re: [git-users] .gitignore isn't ignoring.

2014-04-18 Thread Paul Smith
On Fri, 2014-04-18 at 12:49 -0700, gordonle...@gmail.com wrote: I've set intellij to ignore the three build files, but it too doesn't appear to be ignoring it. .gitignore only impacts file which are untracked (that you've never added or committed). You can't ignore files that you've already

[git-users] what does **/ pattern mean in git?

2014-04-18 Thread gordonleema
Hi, what does **/ pattern mean? Why couldn't the person used doc/*.txt instead of the below? quote # ignore all .txt files in the doc/ directory doc/**/*.txt A **/ pattern is available in Git since version 1.8.2. end quote source:

Re: [git-users] what does **/ pattern mean in git?

2014-04-18 Thread Paul Smith
On Apr 18, 2014 7:17 PM, gordonle...@gmail.com wrote: Hi, what does **/ pattern mean?  Why couldn't the person used doc/*.txt instead of the below? Doc/*.txt matches files ending in .txt in the doc directory while doc/**.txt matches files ending in .txt in doc or any subdirectory of doc.