Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. CĆ³mo usar Git
  6. CĆ³mo usar Git en LĆ­nea de Comandos
  7. Confirmar un archivo
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

Confirmar un archivo

Vamos a aƱadir un nuevo archivo y registrarlo bajo el repositorio que acabamos de crear.

Cree un archivo llamado sample.txt en ese directorio con el siguiente contenido de texto.

Anyone can learn Git with this tutorial and Backlog

Podemos usar el comando git status para confirmar el estado del directorio "tutorial".

$ git status
On branch main
No commits yet
Untracked files:
  (use "git add <file>..." to include in what will be committed)
	sample.txt
nothing added to commit but untracked files present (use "git add" to track)

Podemos deducir de la respuesta que sample.txt no estƔ siendo rastreado. Primero debe aƱadir sample.txt al ƭndice para rastrearlo.

Use el comando git add seguido del archivo que quiere aƱadir al Ć­ndice. Si quiere aƱadir varios archivos, sepĆ”relos con un espacio. A continuaciĆ³n, compruebe que sample.txt se ha aƱadido correctamente al Ć­ndice.

Puede especificar . en lugar de nombres de archivo individuales para aƱadir todos los archivos del directorio actual al ƭndice.

$ git add sample.txt
$ git status
On branch main
No commits yet
Changes to be committed:
  (use "git rm --cached <file>..." to unstage)
	new file:   sample.txt

Ahora que sample.txt se ha aƱadido correctamente al ƭndice, podemos proceder a confirmar el archivo. Use el comando git commit y vuelva a comprobar el estado.

$ git commit -m "first commit"
[main (root-commit) 13fc237] first commit
 1 file changed, 1 insertion(+)
 create mode 100644 sample.txt


$ git status
On branch main
nothing to commit, working tree clean

La respuesta del comando nos dice que no hay mƔs cambios nuevos que confirmar.

Podemos ver la nueva confirmaciĆ³n aƱadida en el registro histĆ³rico del repositorio con el comando git log.

$ git log
  commit ac56e474afbbe1eab9ebce5b3ab48ac4c73ad60e
  Author: username
  Date:   Thu Jul 12 18:00:21 2022 +0900

      first commit

A continuaciĆ³n, estĆ” listo para compartir el repositorio con su equipo.

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life