데비안 8 - Git을 설치할 수 없습니다

데비안 8 - Git을 설치할 수 없습니다

다음 명령을 사용하여 Git을 설치하려고 합니다.

sudo apt-get install git-core

그리고

sudo apt-get install git

둘 다 작동하지 않는 것 같습니다. 일부 패키지를 찾을 수 없는 것 같습니다. 두 명령의 결과는 다음과 같습니다. 여기에 이미지 설명을 입력하세요.

내 소스 목록:

# deb http://ftp.de.debian.org/debian jessie main

deb http://ftp.de.debian.org/debian jessie main non-free contrib
deb-src http://ftp.de.debian.org/debian jessie main non-free contrib

deb http://old-releases.debian.org/ jessie/updates main contrib non-free
deb-src http://old-releases.debian.org/ jessie/updates main contrib non-free

# jessie-updates, previously known as 'volatile'
deb http://ftp.de.debian.org/debian jessie-updates main contrib non-free
deb-src http://ftp.de.debian.org/debian jessie-updates main contrib non-free

deb http://ftp.debian.org/debian jessie-backports main

deb http://mirrors.digitalocean.com/debian jessie main contrib non-free
deb-src http://mirrors.digitalocean.com/debian jessie main contrib non-free

# jessie-updates, previously known as 'volatile'
deb http://mirrors.digitalocean.com/debian jessie-updates main contrib non-free
deb-src http://mirrors.digitalocean.com/debian jessie-updates main contrib non-free

deb http://packages.dotdeb.org jessie all
deb-src http://packages.dotdeb.org jessie all

deb http://ftp.debian.org/debian stretch-backports main
deb-src http://ftp.debian.org/debian stretch-backports main

내 Linux 버전: Debian GNU/Linux 8(jessie)

Git의 올바른 패키지 URL은 무엇입니까?

답변1

source.list의 모든 줄을 삭제하고 다음 줄을 추가하세요.

deb http://ftp.us.debian.org/debian/ jessie main contrib non-free deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free

잊지 마요apt-get update

답변2

jessie-backports저장소는 더 이상 존재하지 않으며 확장에 대한 패키지가 포함되어 있습니다. 현재 분포가 이미 매우 길기 때문에 두 가지 옵션이 있습니다.

  • jessie-backports를 비활성화하고 apt-get updategit 패키지를 실행하여 가져옵니다.제시( apt-get install git), 스트레치(현재 소스 목록에 없음) 또는 스트레치 백포트( apt-get install -t stretch-backports git)
  • 스트레칭으로 업그레이드

관련 정보