[git-users] Error while pushing Git repository to Github

2012-11-14 Thread Ankita Poovaiah
I have created ssh keys. While trying to push git repository to github it is showing this error "git push -u origin master fatal: unable to connect to github.com: github.com: Servname not supported for ai_socktype". What do I need to do? --

[git-users] Re: converting from tar version backups to git

2012-11-14 Thread John McKown
Ah, saves me the "git status" to remove files from git which have been removed from the source. On Wednesday, November 14, 2012 3:22:29 PM UTC-6, Thomas Ferris Nicolaisen wrote: > > I think you could just do a git add -A in steps 4c/d instead. --

[git-users] converting from tar version backups to git

2012-11-14 Thread Thomas Ferris Nicolaisen
I think you could just do a git add -A in steps 4c/d instead. --

[git-users] git & make in the project directory

2012-11-14 Thread Thomas Ferris Nicolaisen
Also, have a look at git clean if you don't know it already. --

Re: [git-users] unable to push using smart http

2012-11-14 Thread kumar
Hi Thanks a lot. It is working now Directory was wrong now set to /usr/lib/git-core/ and changing the permission to www-data made it work Thanks On Wednesday, November 14, 2012 8:54:11 PM UTC+5:30, Konstantin Khomoutov wrote: > > On Wed, 14 Nov 2012 05:58:47 -0800 (PST) > kumar > wrote:

Re: [git-users] converting from tar version backups to git

2012-11-14 Thread John McKown
Thanks. I'm not scripting in this case, Just doing it all "by hand" since I only had 5 previous versions to "git-ify". I did the "rm *" in the project directory before the "tar x" to be sure that I would detect any deleted files. I likely did do a "overkill", but I was more concerned that I miss

Re: [git-users] converting from tar version backups to git

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 06:57:33 -0800 (PST) John McKown wrote: > I've just recently started learning about git and other version > control systems. What I have done in the past is use "tar" to take a > "checkpoint" of the files in my project subdirectory. So the project > subdirectory is equivalent

Re: [git-users] GIT commercial licence

2012-11-14 Thread PJ Weisberg
On Tuesday, November 13, 2012, Philip Oakley wrote: > Git is actually licenced under the Lesser GPL, that is V 2.0 as described in the COPYING file of the source code (e.g. see Github) In general this means that it can be used by commercial companies in the same manner as Linux is used. Git is li

Re: [git-users] git & make in the project directory

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 07:10:20 -0800 (PST) John McKown wrote: > This just occurred to me. I am running on Linux. I use "make" to do > my compiles. Which I do in the working directory. I don't want the > results of the compiles to be tracked in git. What I have done in the > past is to have a clean

Re: [git-users] unable to push using smart http

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 05:58:47 -0800 (PST) kumar wrote: > I have setup smart http and now able to clone. I am using Ubuntu > 12.10. but when i try to push i get the following error. > > $git push http://192.168.0.66/git/gitrepos/project1.git master [...] > ! [remote rejected] master -> master (n/

[git-users] git & make in the project directory

2012-11-14 Thread John McKown
This just occurred to me. I am running on Linux. I use "make" to do my compiles. Which I do in the working directory. I don't want the results of the compiles to be tracked in git. What I have done in the past is to have a clean directory when I did the "git commit", often with a "make clean" c

[git-users] converting from tar version backups to git

2012-11-14 Thread John McKown
I've just recently started learning about git and other version control systems. What I have done in the past is use "tar" to take a "checkpoint" of the files in my project subdirectory. So the project subdirectory is equivalent to the "working directory" in git. And each tar back is kind of li

[git-users] unable to push using smart http

2012-11-14 Thread kumar
Hi I have setup smart http and now able to clone. I am using Ubuntu 12.10. but when i try to push i get the following error. $git push http://192.168.0.66/git/gitrepos/project1.git master Counting objects: 5, done. Writing objects: 100% (3/3), 276 bytes, done. Total 3 (delta 0), reused 0 (delta

Re: [git-users] git push problem (Windows)

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 00:04:29 -0800 (PST) Sergey Ovchinnikov wrote: > Hello, I had a problem. Hang when trying to do 'git push'. [...] > git init --bare C:/Repo/egg.git > git daemon --verbose --enable=receive-pack --base-path=C:/Repo > --export-all C:/Repo/egg.git --detach --syslog [...] > In what

Re: [git-users] git push problem (Windows)

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 01:37:31 -0800 (PST) Thomas Ferris Nicolaisen wrote: > Git daemon only serves read operations. You can't push to it, only > fetch or pull. That is incorrect: the "--enable=receive-pack" command-line options precisely enables the service which allows *anonymous* pushes. This is

[git-users] Re: git push problem (Windows)

2012-11-14 Thread Sergey Ovchinnikov
I tried to do it also on MacOS. Successful. Why this don't work on Windows XP? среда, 14 ноября 2012 г., 12:37:31 UTC+3 пользователь Thomas Ferris Nicolaisen написал: > > Git daemon only serves read operations. You can't push to it, only fetch > or pull. --

[git-users] git push problem (Windows)

2012-11-14 Thread Thomas Ferris Nicolaisen
Git daemon only serves read operations. You can't push to it, only fetch or pull. --

Re: [git-users] GIT commercial licence

2012-11-14 Thread Philip Oakley
https://github.com/git/git/blob/master/COPYING - Original Message - From: Philip Oakley To: Srinivas reddy kukunoor ; git-users@googlegroups.com Sent: Wednesday, November 14, 2012 12:53 AM Subject: Re: [git-users] GIT commercial licence Git is actually licenced under the Le

[git-users] git push problem (Windows)

2012-11-14 Thread Sergey Ovchinnikov
Hello, I had a problem. Hang when trying to do 'git push'. The following sequence of actions. git init --bare C:/Repo/egg.git git daemon --verbose --enable=receive-pack --base-path=C:/Repo --export-all C:/Repo/egg.git --detach --syslog In another folder: git clone git://localhost/egg.git ok.