[git-users] Re: how to organize a repository for a shared-template system?

2009-12-01 Thread Orava
Ok, thanks! That helps a lot. :) -Petri -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-us...@googlegroups.com. To unsubscribe from this group, send email to

Re: [git-users] Transplant branch from another repository

2009-12-01 Thread Andrew W. Nosenko
On Tue, Dec 1, 2009 at 08:40, Jeenu jee...@gmail.com wrote: Hi, Let's say I have two independent repositories A and B. A has a branch 'a', which I want to have in B. What I mean is that I'd like to have the sequence of changes in the branch 'a' to be present in B, thus creating an

[git-users] git-svn and --use-log-author --add-author-from = Unknown option.

2009-12-01 Thread Brett Viren
Hi, I'm trying to sync one SVN repository to a sub directory of a second one using git-svn. I'll show how I'm mostly successfully doing that below. The problem I'm having is that I want the original commit author names to be preserved in the sync'ed repository. git-svn's man page talks about

Re: [git-users] question regarding multiple ssh keys

2009-12-01 Thread Alan Hawrylyshen
What is the output of ssh -vvv g...@my_personal_account.github.com and ssh -vvv g...@my_work_account.github.com ? There might be a clue in there to the reasons behind the troubles. I've been using git with multiple identity files and a single server, differentiated only by hostname with no

[git-users] Re: question regarding multiple ssh keys

2009-12-01 Thread chris
It is working now. I believe the remote repo was added incorrectly. After removing it and re-adding it I was able to push my commits. Thanks for the help Alan. It helped me out knowing the issue wasn't in the .ssh/config file. On Dec 1, 12:05 pm, Alan Hawrylyshen a...@polyphase.ca wrote:

[git-users] Re: git-svn and --use-log-author --add-author-from = Unknown option.

2009-12-01 Thread Brett Viren
On Tue, Dec 1, 2009 at 10:05 AM, Brett Viren brett.vi...@gmail.com wrote:  Unknown option: use-log-author Digging into git-svn more I see the problem. This option is only defined for git-svn fetch or git-svn clone and not git-svn init. So it is a mismatch-bug between documentation and code.