[git-users] Can git handle huge repository

2012-11-29 Thread kumar
Hi I have a 20 GB project and when i try to push it into remote git using http i fails. I get the following error --- git.exe push --progress "jumpstart" master Counting objects: 207955 Counting objects: 208012, done. Compr

[git-users] Re: Nice book review about git

2012-11-29 Thread John McKown
I've just started reading it. And, so far, it is also very helpful. Did a wonderful explanation about "git mv" to be able to restructure your project's files into different subdirectories and why it is so simple and fast. I have a much better idea how git is "content addressable" and how differ

Re: [git-users] Pushing files into a subtree

2012-11-29 Thread Philip Oakley
From: "Dale R. Worley" To: Sent: Thursday, November 29, 2012 7:50 PM Subject: Re: [git-users] Pushing files into a subtree From: Ryan Hodson If you're not looking for a submodule, you can just move the tracked files into a subdirectory with 'mv' or through your file browser. Then run 'git

Re: [git-users] Pushing files into a subtree

2012-11-29 Thread Dale R. Worley
> From: Ryan Hodson > > If you're not looking for a submodule, you can just move the tracked files > into a subdirectory with 'mv' or through your file browser. Then run 'git > add .' in the project root and Git will figure out the file renames on its > own. The 'git mv' command can be used to th

[git-users] Re: Nice book review about git

2012-11-29 Thread Thom Parkin
This review makes it look like a great book. Even with the few caveats. I found Pro-Git to be indispensable as a teacher initially and now as a reference (for those functions I use less often - there are so very many of them). Thanks for sharing this!! Thom == If DEBUGGING is the process o

Re: [git-users] Pushing files into a subtree

2012-11-29 Thread John McKown
Can't get the web-site to bottom post. Sorry. Thanks Konstantin, that 4th web page was very helpful to me. I thought I'd see how well it works. I have a subdirectory which contains multiple subdirectories. Each subdirectory within the parent is an independent git repository. I thought I'd try t

RE: [git-users] xargs on windows doesnt work [solved]

2012-11-29 Thread IMMO WETZEL
Arggg Xargs executes somewhere else... Your were right. ./ls.exe instead of ls worked fine... Immo -Original Message- From: Konstantin Khomoutov [mailto:flatw...@users.sourceforge.net] Sent: Donnerstag, 29. November 2012 13:39 To: git-users@googlegroups.com Cc: IMMO WETZEL Subject: R

Re: [git-users] xargs on windows doesnt work

2012-11-29 Thread Konstantin Khomoutov
On Thu, 29 Nov 2012 01:30:39 -0800 (PST) immo wrote: > I was trying to write a git hook with the build in “unix” commands > from git. > > But xargs doesn’t work as expected > > git version 1.8.0.msysgit.0 (C:\Program Files (x86)\Git\bin) > > C:\Program Files (x86)\Git\bin>echo -la | xargs ls

[git-users] How can I do "git log" to find only commits of a branch?

2012-11-29 Thread VMV
I want to do a sentence which show me only the commits( no merge/ no push) of a branch. Is it posible? Thanks for your help!!! --

[git-users] xargs on windows doesnt work

2012-11-29 Thread immo
I was trying to write a git hook with the build in “unix” commands from git. But xargs doesn’t work as expected > git version 1.8.0.msysgit.0 (C:\Program Files (x86)\Git\bin) C:\Program Files (x86)\Git\bin>echo -la | xargs ls xargs: ls: No such file or directory What can I do to solve this