Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ubuntu] Rework Git installation to avoid using apt repo #3095

5 changes: 2 additions & 3 deletions images/linux/scripts/installers/git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
source $HELPER_SCRIPTS/install.sh

## Install git
add-apt-repository ppa:git-core/ppa -y
apt-get update
apt-get install git -y
dibir-magomedsaygitov marked this conversation as resolved.
Show resolved Hide resolved
git --version

# Install git-lfs
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
apt-get install -y --no-install-recommends git-lfs
apt-get update -y
dibir-magomedsaygitov marked this conversation as resolved.
Show resolved Hide resolved
apt-get install -y git-lfs
dibir-magomedsaygitov marked this conversation as resolved.
Show resolved Hide resolved

# Install git-ftp
apt-get install git-ftp -y
Expand Down