JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Skip to content
Gallery
GIT
GIT
Repositorio
Configurar GIT
Comandos básico
Ramas
Commit
Alias
Tag
Curso git
More
Share
Explore
Curso git
git checkout main^:
Esto te lleva al último commit
git checkout HEAD^:
Navega al último commit de la rama actual
git checkout HEAD^3:
Navega hacia atras segun el número que se le especifique
git branch -f main HEAD~3:
Con esto te mueves a la fuerza
The ~ operator
git checkout -f main c6
git branch -f bugFix HEAD~1
git cherry-pick
Rebase interactive
git rebase -i HEAD~4
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
Ctrl
P
) instead.