DEV Community

Cover image for Instalación de Git en Linux Ubuntu
Manuel Ortega Carcamo for 4GeeksAcademy

Posted on

3 3

Instalación de Git en Linux Ubuntu

Guía de instalación

Abrir una terminal y ejecutar los siguientes pasos:

Actualizar los paquetes disponibles y sus versiones.

sudo apt update
Enter fullscreen mode Exit fullscreen mode

Instalar Git

sudo apt install git
Enter fullscreen mode Exit fullscreen mode

Verificar la versión de Git instalada

git --version

git version 2.25.1

Enter fullscreen mode Exit fullscreen mode

Clonar el boilerplate de la academia react-hello

git clone https://github.com/4GeeksAcademy/react-hello.git

cd react-hello

npm install

npm run start
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay