1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:22:08 +02:00
tldr/pages.es/common/git-status.md
Ignacio Mattos 8939f2e0eb
git-*: sync Spanish translation (#5893)
* 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
2021-05-04 13:18:41 -04:00

21 lines
579 B
Markdown

# 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`