18 puntos por xguru 2020-11-11 | Aún no hay comentarios. | Compartir por WhatsApp

Corrección automática de errores tipográficos $ git config --global help.autocorrect 1

Contar commits $ git rev-list --count

Optimizar el repo $ git gc --prune=now --aggressive

Respaldar archivos sin seguimiento $ git ls-files --others --exclude-standard -z | xargs -0 tar rvf ~/backup-untracked.zip

Ver archivos de otra rama $ git show main:README.md

Buscar en Git $ git rev-list --all | xargs git grep -F ‘’

Entender la carpeta .git

$ cat .git/HEAD

$ cat .git/description

Aún no hay comentarios.

Aún no hay comentarios.