Re: [git-users] git push stopped on windows

2012-12-06 Thread Konstantin Khomoutov
On Thu, Dec 06, 2012 at 10:03:22PM -0800, jxck wrote: > I'm using git server on ubuntu. > When I need to share my code, running daemon > by using git-daemon like this. [...] > but, I can't push from windows. > > $ git clone git://ipaddr/git/reponame // ok > $ git pull origin master // ok > > $

[git-users] git push stopped on windows

2012-12-06 Thread jxck
Hi guys. I'm using git server on ubuntu. When I need to share my code, running daemon by using git-daemon like this. $ git daemon --verbose --export-all --enable=receive-pack --base-path=./ I can push/pull to this repo from another ubuntu running on windows(vmware player). $ git clone git://ipa

Re: [git-users] Where to file bug reports???

2012-12-06 Thread Philip Oakley
The g...@vger.kernel.org is the right address for the main git developer list. HOWEVER it does require you to send plain text messages. All HTML is rejected out of hand by the vger.kernel.org lists. It's archive is on http://news.gmane.org/gmane.comp.version-control.git If you are Git for Windo

[git-users] Where to file bug reports???

2012-12-06 Thread xpnctoc
The Git home page (http://git-scm.com/community) lists an email to send bug reports to. However, that address was rejected by two separate email services. Where should I send bug reports? --

[git-users] Re: multiple eclipse projects using single repository

2012-12-06 Thread Thomas Ferris Nicolaisen
On Thursday, December 6, 2012 7:22:58 PM UTC+1, Jeffrey Marans wrote: > Can I create multiple eclipse projects using the same GIT repository > without sub-repositories or the need to re-clone the repository each time? Of course you can. Just create the projects one level deeper: repository-roo

[git-users] Re: multiple eclipse projects using single repository

2012-12-06 Thread Jeffrey Marans
Thanks, I think it's worth reading. On Thursday, December 6, 2012 2:30:04 PM UTC-5, John McKown wrote: > > I hesitate to mention this, but have you looked at submodules? It is, kind > of, similar to what you seem to want. Each eclipse project is in its own > subdirectory of the same parent. The

[git-users] Re: multiple eclipse projects using single repository

2012-12-06 Thread John McKown
I hesitate to mention this, but have you looked at submodules? It is, kind of, similar to what you seem to want. Each eclipse project is in its own subdirectory of the same parent. The parent is a "superproject". From my reading, this is "cutting edge" in git. I.e. it is new and still changing.

Re: [git-users] multiple eclipse projects using single repository

2012-12-06 Thread Jeffrey Marans
Thanks. On Thursday, December 6, 2012 1:50:38 PM UTC-5, William Mizuta wrote: > > You need one .project for each eclipse project. So, you need diferent > subdirectories for each one of your eclipse project. However, that's not a > good solution. > > I recommend to create a git repository for eac

Re: [git-users] multiple eclipse projects using single repository

2012-12-06 Thread William Mizuta
You need one .project for each eclipse project. So, you need diferent subdirectories for each one of your eclipse project. However, that's not a good solution. I recommend to create a git repository for each one of your eclipse projects. William Seiti Mizuta @williammizuta Desenvolvedor da Caelu

[git-users] multiple eclipse projects using single repository

2012-12-06 Thread Jeffrey Marans
Can I create multiple eclipse projects using the same GIT repository without sub-repositories or the need to re-clone the repository each time? It seems that when one creates a project in eclipse it saves a .project file into the repository making it impossible to create another. --