repositorio remota rama que crear git git-branch sha git-cherry-pick

remota - ¿Cómo elegir el último sha de otra sucursal en Git con 1 comando?



que es head en git (1)

Me encuentro haciendo esto mucho cuando selecciono un compromiso de otra rama.

$ git log -1 another_branch commit <commit_sha> // copy <commit_sha> $ git cherry-pick <commit_sha>

¿Puedo hacer todo esto en un comando? De ser así, ¿qué es?


Solo ve con:

$ git cherry-pick another_branch

Esto seleccionará con precisión el último commit de another_branch.

Las ramas en git son solo referencias al último commit en esa rama, puedes usarlas en lugar de cometer SHA en tus comandos.