Ejemplo 1: cómo actualizar la lista de ramas remotas git
git remote update origin --prune
Ejemplo 2: git reemplaza la rama local con la remota
git fetch
git reset --hard origin/{{branch}}
# replace {{branch}} with name
Ejemplo 3: git reemplaza la rama local con la remota
git reset --hard origin/master
Ejemplo 4: rama remota de git fetch
git checkout --track origin/branch_name
Ejemplo 5: ramas de sincronización de git
git fetch origin
git reset --hard origin/master
git clean -f -d
#If you want to retain the changes as unstaged files, use --soft instead of --hard.
#WARNING: All your untracked files will be gone when you do git clean -f -d.
Ejemplo 6: enviar cambios de sucursal local a sucursal remota
git push -u origin localBranch:remoteBranchToBeCreated
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)