From 6d9afb1bd7d1cb0a68f0438bcc50d1d0b238ba53 Mon Sep 17 00:00:00 2001 From: Lupe CaMay Date: Sun, 31 May 2020 12:20:41 -0400 Subject: [PATCH 1/2] fix: Add sudo keyword to install git on Debian I think that without sudo the command can confuse people that are installing for the first time Git and also in the English version sudo is there. `sudo apt install git-all` --- book/01-introduction/sections/installing.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/01-introduction/sections/installing.asc b/book/01-introduction/sections/installing.asc index 24984a22..d39cb1d7 100644 --- a/book/01-introduction/sections/installing.asc +++ b/book/01-introduction/sections/installing.asc @@ -19,7 +19,7 @@ Si estás en Fedora por ejemplo, puedes usar yum: Si estás en una distribución basada en Debian como Ubuntu, puedes usar apt-get: - $ apt-get install git + $ sudo apt install git Para opciones adicionales, la página web de Git tiene instrucciones de instalación en diferentes tipos de Unix. Puedes encontrar esta información en http://git-scm.com/download/linux[]. From 39024c671fd83389ed125cd54429847c39721ef8 Mon Sep 17 00:00:00 2001 From: Lupe CaMay Date: Thu, 11 Jun 2020 21:12:15 -0400 Subject: [PATCH 2/2] Change apt-get to apt --- book/01-introduction/sections/installing.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/01-introduction/sections/installing.asc b/book/01-introduction/sections/installing.asc index d39cb1d7..b94483b8 100644 --- a/book/01-introduction/sections/installing.asc +++ b/book/01-introduction/sections/installing.asc @@ -16,7 +16,7 @@ Si estás en Fedora por ejemplo, puedes usar yum: $ yum install git -Si estás en una distribución basada en Debian como Ubuntu, puedes usar apt-get: +Si estás en una distribución basada en Debian como Ubuntu, puedes usar apt: $ sudo apt install git