Re: [git-users] How to merge seperate repositories as branches in new repository?

2013-10-19 Thread Magnus Therning
On Fri, Oct 18, 2013 at 12:29:31PM -0700, Casper Schmidt wrote: Hi there Being quite new to the more advanced use of Git I really need some help here. I have been using the simple Git pull/fetch/commit/push/merge commands, which are pretty simple, for about 9 months so I 'm familiar with

Re: [git-users] How to list branches

2013-10-19 Thread Philip Oakley
From: Felipe Contreras felipe.contre...@gmail.com To: git-users@googlegroups.com Sent: Saturday, October 19, 2013 3:47 AM Subject: Re: [git-users] How to list branches On Fri, Oct 18, 2013 at 9:31 PM, Blake McBride blake1...@gmail.com wrote: I now see that the -a list option displays all of

Re: [git-users] How to merge seperate repositories as branches in new repository?

2013-10-19 Thread PJ Weisberg
On Oct 18, 2013 12:29 PM, Casper Schmidt kalle.pri...@gmail.com wrote: My question is then: Is there any way to merge multiple repositories into a single repository but in their own branch. I have found a few guidelines using multiple remotes and simple merge but this merges the history into the

Re: [git-users] How to list branches

2013-10-19 Thread David
On 19 October 2013 15:02, Charles Manning cdhmann...@gmail.com wrote: I suggest you work through the example again using something like gitk. That will show you what branches there are and show you the difference between the local and remote branches of the same name. Using gitk between

[git-users] GIT with large projects

2013-10-19 Thread Blake McBride
Greetings, I have a large application that takes about two hours to build. Sometime I have to do partial-project commits in order to communicate development from one area to another (I can explain further but it is irrelevant to the question). I'd prefer (if I was using git rather than svn)

Re: [git-users] GIT with large projects

2013-10-19 Thread Gergely Polonkai
Hello, according to your description, your project seems to be something like the Linux kernel, and Git handles that just fine. Depending on your build environment, Git branches may help you a lot, as, if it is designed well, can prevent full rebuilds. Cheers, Gergely On 19 Oct 2013 23:40, Blake