git svn - GIT pull from a bare repository -
i have git repo setup using "git svn" subversion repo. made clone of called b, b bare repository(git clone --bare). clone c b, work on c , periodically push changes b (the reason made b bare). now, when want pickup latest updates subversion run "git svn rebase" on repo a. how pull these updates b. moving b , executing "git pull" fails error - "fatal: /usr/local/git-1.7.0/libexec/git-core/git-pull cannot used without working tree.". correct way move updates b
since b bare, want push changes b.
what you've described seems lot of pushing , pulling without obvious benefit. use git-svn working directly in repository created using git svn clone
. there particular reason why you're creating repositories?
Comments
Post a Comment