mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:22:09 +02:00

* git-config: sync Spanish translation * git-lfs: sync Spanish translation * git-log: sync Spanish translation * git-remote: sync Spanish translation * git-restore: sync Spanish translation * git-show: sync Spanish translation * git-status: sync Spanish translation * git-switch: sync Spanish translation
579 B
579 B
git status
Muestra los cambios realizados en los archivos del repositorio Git. Lista los archivos cambiados, añadidos y eliminados comparándolos con el último commit. Más información: https://git-scm.com/docs/git-status.
- Muestra los archivos cambiados que aún no han sido añadidos a un commit:
git status
- Muestra la salida en formato breve:
git status -s
- No muestra los archivos sin rastrear en la salida:
git status --untracked-files=no
- Muestra la salida en formato breve junto a la información del branch:
git status --short --branch