1
2
3
4
5
6
7
8
9
10
11
12
| # after this, it will generate a new list in /etc/apt/sources.list.d
sudo add-apt-repository ppa:git-core/ppa
# change "http://ppa.launchpad.net" to "https://launchpad.proxy.ustclug.org"
❯ ll /etc/apt/sources.list.d
.rw-r--r-- root root 137 B Fri Feb 5 17:49:07 2021 git-core-ubuntu-ppa-focal.list
❯ cat /etc/apt/sources.list.d/git-core-ubuntu-ppa-focal.list
deb https://launchpad.proxy.ustclug.org/git-core/ppa/ubuntu focal main
# install the latest git
sudo apt update
sudo apt install git
|