En git de qué manera puedo hacer merge de commits desde una ruta remota a una diferente?
Merge de commits
Iniciado por
Leandro
, feb 17 2014 03:30
#1 AUTOR PREGUNTA
Preguntas Similares
Esto también te interesa!
#2
Publicado 17 febrero 2014 - 15:12
Primero añade el otro proyecto con el cual quieres trabajar y realiza un merge:
Luego lee el arbol del master y realiza un commit al merge resultante y por último realiza un pull:
$ git remote add -f proyecto /path/to/B $ git merge -s ours --no-commit Bproject/master
Luego lee el arbol del master y realiza un commit al merge resultante y por último realiza un pull:
$ git read-tree --prefix=dir-B/ -u Bproject/master $ git commit -m "Merge B project as our subdirectory" $ git pull -s subtree Bproject master