$$ \newcommand{\lr}[1]{\left(#1\right)} \newcommand{\var}[1]{\textrm{Var}\left[#1\right]} \newcommand{\esp}[1]{\textrm{E}\left[#1\right]} \newcommand{\rm}[1]{\textrm{#1}} \def\bb{\mathbb} \def\bf{\mathbf} \def\cl{\mathcal} $$

GitHub

\(\lr{1}\hspace{0.2cm} \textrm{Hacer push una vez se hacen cambios en el repositorio local}\)

git add .
git commit -m "cambio"
git push origin main

\(\lr{2}\hspace{0.2cm} \textrm{Volver a una versión anterior del repositorio en los repositorios local y remoto}\)

git reset --hard <commit-hash>
git push -f origin main
git add .
git commit -m "cambio"
git push origin main

\(\lr{3}\hspace{0.2cm} \textrm{Ver la rama actual, y las demás ramas}\)

git branch
Volver arriba