포크 설정 #

먼저 Make your own copy (fork) of Matplotlib 지침을 따릅니다 .

개요 #

git clone https://github.com/your-user-name/matplotlib.git
cd matplotlib
git remote add upstream https://github.com/matplotlib/matplotlib.git

자세히 #

포크 복제 #

  1. 다음을 사용하여 포크를 로컬 컴퓨터에 복제합니다.git clone https://github.com/your-user-name/matplotlib.git

  2. 조사하다. 디렉토리를 새 저장소로 변경하십시오: . 그런 다음 모든 지점을 보여줍니다. 다음과 같은 결과를 얻게 됩니다.cd matplotlibgit branch -a

    * main
    remotes/origin/main
    

    이는 현재 main분기에 있고 에 remote연결되어 있음을 알려줍니다 origin/main. 원격 저장소는 무엇입니까 remote/origin? 리모컨 의 URL을 확인하십시오. 그들은 당신의 github 포크를 가리킬 것입니다.git remote -v

    이제 트렁크에서 변경 사항을 병합할 수 있도록 업스트림 Matplotlib github 리포지토리 에 연결하려고 합니다 .

리포지토리를 업스트림 리포지토리에 연결 #

cd matplotlib
git remote add upstream https://github.com/matplotlib/matplotlib.git

upstream다음은 Matplotlib github 의 기본 Matplotlib 저장소 를 참조하기 위해 사용하는 임의의 이름 입니다.

자신의 만족을 위해 다음과 같은 것을 제공하는 와 함께 새로운 '리모컨'이 있음을 스스로에게 보여주십시오.git remote -v show

upstream     https://github.com/matplotlib/matplotlib.git (fetch)
upstream     https://github.com/matplotlib/matplotlib.git (push)
origin       https://github.com/your-user-name/matplotlib.git (fetch)
origin       https://github.com/your-user-name/matplotlib.git (push)