Git es un sistema de control de versiones distribuido, de código abierto y ampliamente utilizado. Se utiliza para realizar un seguimiento y gestionar los cambios en archivos, especialmente en el código fuente, a lo largo del tiempo. Git facilita el trabajo en equipo al registrar versiones de cada archivo y permitir a los desarrolladores fusionar (merge) sus cambios.

Algunas características y ventajas clave de Git:

Algunos comandos básicos de git

Setup & Initialization

git init

Initialize a new Git repository.

git clone <repo_url>

Clone an existing repository.

Working with Changes

git status

Check the status of your repository.

git add <file>
git add .

Stage changes (single file or all files).