From 48f6ddd7ba1754845a928885d61e9938dc4df2c1 Mon Sep 17 00:00:00 2001 From: Pedro Henrique <79018158+nukhes@users.noreply.github.com> Date: Mon, 7 Jul 2025 13:45:28 -0300 Subject: [PATCH] Change command to install Git in Termux Termux recommends using "pkg install" instead of "apt install", pkg is a wrapper that performs useful tasks: - Provides command shortcuts. - Automatically runs "apt update" before installing a package. - Performs some client side repository load-balancing by automatically switching mirrors. --- content/get-started/git-basics/set-up-git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/git-basics/set-up-git.md b/content/get-started/git-basics/set-up-git.md index 882c185e9ad5..6720f0774066 100644 --- a/content/get-started/git-basics/set-up-git.md +++ b/content/get-started/git-basics/set-up-git.md @@ -47,7 +47,7 @@ If you do not need to work with files locally, {% data variables.product.github > If you are using an older Chrome OS device, another method is required: > > 1. Install a terminal emulator such as Termux from the Google Play Store on your Chrome OS device. - > 1. From the terminal emulator that you installed, install Git. For example, in Termux, enter `apt install git` and then type `y` when prompted. + > 1. From the terminal emulator that you installed, install Git. For example, in Termux, enter `pkg install git` and then type `y` when prompted. 1. [Set your username in Git](/get-started/git-basics/setting-your-username-in-git). 1. [Set your commit email address in Git](/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address).