* How to sync two svn repositories via git?
@ 2009-04-01 22:30 Josef Wolf
2009-04-02 7:41 ` Michael J Gruber
0 siblings, 1 reply; 3+ messages in thread
From: Josef Wolf @ 2009-04-01 22:30 UTC (permalink / raw)
To: git
Hello,
I have two subversion repositories which I would like to synchronize via
git-svn. For this, I have set up a git repository and configured two
branches to track the subversion repositories via git-svn:
mkdir test-sync
cd test-sync
git svn init --stdlayout file://$REPOSDIR/svn-first
for repos in svn-first svn-second; do
git config svn-remote.$repos.url file://$REPOSDIR/$repos
git config svn-remote.$repos.fetch trunk:refs/remotes/$repos/trunk
git config svn-remote.$repos.branches branches/*:refs/remotes/$repos/*
git config svn-remote.$repos.tags tags/*:refs/remotes/$repos/tags/*
git svn fetch -R $repos
git checkout -b $repos $repos/trunk
done
git gc
This gives me two remote and two local branches:
master
svn-first
* svn-second
svn-first/trunk
svn-second/trunk
The first step I'd like to do is to "mirror" the manual merges that were
done between the subversion repositories in the past:
git checkout svn-first
git merge -s ours --log commit-of-the-first-merge-in-svn-second
git checkout svn-second
git merge -s ours --log commit-of-the-first-merge-in-svn-first
This seems to work, but git-gui shows conflicts. How can I get conflicts
when I use the "-s ours" merge strategy?
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: How to sync two svn repositories via git?
2009-04-01 22:30 How to sync two svn repositories via git? Josef Wolf
@ 2009-04-02 7:41 ` Michael J Gruber
2009-04-02 10:36 ` Josef Wolf
0 siblings, 1 reply; 3+ messages in thread
From: Michael J Gruber @ 2009-04-02 7:41 UTC (permalink / raw)
To: Josef Wolf, git
Josef Wolf venit, vidit, dixit 02.04.2009 00:30:
> Hello,
>
> I have two subversion repositories which I would like to synchronize via
> git-svn. For this, I have set up a git repository and configured two
> branches to track the subversion repositories via git-svn:
>
> mkdir test-sync
> cd test-sync
> git svn init --stdlayout file://$REPOSDIR/svn-first
>
> for repos in svn-first svn-second; do
> git config svn-remote.$repos.url file://$REPOSDIR/$repos
> git config svn-remote.$repos.fetch trunk:refs/remotes/$repos/trunk
> git config svn-remote.$repos.branches branches/*:refs/remotes/$repos/*
> git config svn-remote.$repos.tags tags/*:refs/remotes/$repos/tags/*
> git svn fetch -R $repos
> git checkout -b $repos $repos/trunk
> done
> git gc
>
> This gives me two remote and two local branches:
>
> master
> svn-first
> * svn-second
> svn-first/trunk
> svn-second/trunk
>
> The first step I'd like to do is to "mirror" the manual merges that were
> done between the subversion repositories in the past:
>
> git checkout svn-first
> git merge -s ours --log commit-of-the-first-merge-in-svn-second
>
> git checkout svn-second
> git merge -s ours --log commit-of-the-first-merge-in-svn-first
>
> This seems to work, but git-gui shows conflicts. How can I get conflicts
> when I use the "-s ours" merge strategy?
What do git status and git diff (--stat, --combined) say?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How to sync two svn repositories via git?
2009-04-02 7:41 ` Michael J Gruber
@ 2009-04-02 10:36 ` Josef Wolf
0 siblings, 0 replies; 3+ messages in thread
From: Josef Wolf @ 2009-04-02 10:36 UTC (permalink / raw)
To: git
On Thu, Apr 02, 2009 at 09:41:31AM +0200, Michael J Gruber wrote:
> Josef Wolf venit, vidit, dixit 02.04.2009 00:30:
[ ... ]
> > The first step I'd like to do is to "mirror" the manual merges that were
> > done between the subversion repositories in the past:
> >
> > git checkout svn-first
> > git merge -s ours --log commit-of-the-first-merge-in-svn-second
> >
> > git checkout svn-second
> > git merge -s ours --log commit-of-the-first-merge-in-svn-first
> >
> > This seems to work, but git-gui shows conflicts. How can I get conflicts
> > when I use the "-s ours" merge strategy?
>
> What do git status and git diff (--stat, --combined) say?
Umm, that's somewhat odd.
Directly after the merge commands, gitk says there are local modifications.
Then I run "git status" which says the working directory is clean. Then
I re-run gitk, which _now_ shows no local modifications any more.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-04-02 10:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-01 22:30 How to sync two svn repositories via git? Josef Wolf
2009-04-02 7:41 ` Michael J Gruber
2009-04-02 10:36 ` Josef Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).