git version 1.7.1
svn, version 1.6.12
Ubuntu 10.10
Tengo solo git y he usado svn. Pero no he usado entonces juntos. Tenía un repositorio de git, y tenía que hacer más de mi repositorio a uno de subversión. Así que he estado usando git-svn. Lo cual funciona bien, la mayoría de las veces. Sin embargo, me parece dar vueltas en círculos.git-svn rebase y dcommit problema
Soy el único que trabaja en este proyecto.
Realizo algunos cambios en mi sucursal. a continuación, I etapa ellos:
git stage gateway.c
luego confirmar localmente a git:
git commit m"Made some changes"
entonces quiero comprometer a la subversión. Obtener las últimas actualizaciones:
git svn rebase
Entonces me sale el siguiente mensaje:
It seems that I cannot create a rebase-apply directory, and
I wonder if you are in the middle of patch application or another
rebase. If that is not the case, please
rm -fr /home/joe/projects/gateway/.git/rebase-apply
and run me again. I am stopping in case you still have something
valuable there.
rebase refs/remotes/trunk: command returned error: 1
I then doing the following:
rm -fr /home/joe/projects/gateway/.git/rebase-apply
Entonces hago un rebase de nuevo:
git svn rebase
El mensaje es el siguiente:
First, rewinding head to replay your work on top of it...
Applying: Issue with getting the port from the user context.
Using index info to reconstruct a base tree...
Falling back to patching base and 3-way merge...
Auto-merging driver.c
Auto-merging gateway.c
CONFLICT (content): Merge conflict in gateway.c
Failed to merge in the changes.
Patch failed at 0001 Issue with getting the port from the user context.
When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To restore the original branch and stop rebasing run "git rebase --abort".
rebase refs/remotes/trunk: command returned error: 1
Lo que me llama a una rama, y w sombrero es esta rama, y para qué sirve ?:
*(no branch)
que luego resolver los conflictos a esa rama. Luego compruebo mi rama play_video. Intento hacer otro:
svn git dcommit
Y termino dando vueltas en círculos otra vez.
Antes de empezar a tirar de mi pelo, pueden algunos me ofrecen algunos consejos,
Muchas gracias por todas las sugerencias,
teniendo el mismo problema aquí ... casi 3 años y ninguna sugerencia ... – Quartz