Перезалив репозитория
This commit is contained in:
24
install/010-git.sh
Executable file
24
install/010-git.sh
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
. "../src/01-common.sh" || exit 5
|
||||
title "Installing git..."
|
||||
|
||||
if installed 'git'; then
|
||||
[ ! -d "/usr/src/git" ] && sudo git clone https://github.com/git/git.git --depth=1 /usr/src/git
|
||||
sudo chown -R anthony: /usr/src/git
|
||||
cd /usr/src/git/
|
||||
sudo git pull
|
||||
sudo make prefix=/usr/local all
|
||||
sudo make prefix=/usr/local install
|
||||
else
|
||||
sudo wget https://github.com/git/git/archive/master.zip -O /usr/src/git.zip
|
||||
sudo unzip /usr/src/git.zip -d /usr/src/git
|
||||
sudo rm -f /usr/src/git.zip
|
||||
cd /usr/src/git/git-master
|
||||
sudo make prefix=/usr/local all
|
||||
sudo make prefix=/usr/local install
|
||||
cd /usr/src
|
||||
sudo rm -rf git
|
||||
sudo git clone https://github.com/git/git.git --depth=1 /usr/src/git
|
||||
sudo chown -R anthony: /usr/src/git
|
||||
fi
|
||||
success "$(git --version)"
|
||||
Reference in New Issue
Block a user