Re: [git-users] I create GitPrep. This is GitHub portable clone.

2013-06-30 Thread aft
Wonderful thing. I will surely check it out. On Sun, Jun 30, 2013 at 4:48 PM, 木本裕紀 kimoto.y...@gmail.com wrote: I'm yuki kimoto, Japanese programmer. I like git. I create GitPrep. This is Github clone. you can install portable github system into unix/linux.

[git-users] Do I have to download all files?

2013-06-30 Thread HWSWMAN
If I create a git repo for multiple projects, for example ALL projects that my team works on, when they clone and pull, do they have to download all the files? Can they sort of selectively download the files they may want to read or work on? The idea is I want to track a bunch of projects

[git-users] Re: Do I have to download all files?

2013-06-30 Thread HWSWMAN
I am also wondering, if everyone clones the repo so they can start contributing, then there are like 10 copies of the project files going around .. isn't that a waste? Is there a better way? Please help explain I am using for the first time -- You received this message because you are

Re: [git-users] Re: Do I have to download all files?

2013-06-30 Thread John McKown
That is part of the design of git. It is a _distributed_ system. Perhaps what you really want would be something like Subversion, in which a person checks out only those files they want to work on. With git, each person is supposed to get all the files and the entire modification history of them.

Re: [git-users] Re: Do I have to download all files?

2013-06-30 Thread Ed Pataky
OK thank you ... i like the island idea i will have to look into that On Sun, Jun 30, 2013 at 7:44 PM, John McKown john.archie.mck...@gmail.comwrote: That is part of the design of git. It is a _distributed_ system. Perhaps what you really want would be something like Subversion, in which a