git에서 코드 가져오기
on etc
1. Repository의 모든 코드 가져오기
git clone https://github.com/Udayeon/mmdetection.git
2. Repository의 일부 코드 가져오기
붙여 넣을 위치에서 터미널을 열고 아래와 같이 입력
git init
git remote add origin https://github.com/Udayeon/mmdetection.git
git config core.sparsecheckout true
echo 'configs/_base_/models/**' >> .git/info/sparse-checkout
git pull origin master
‘https://github.com/Udayeon/mmdetection.git’의 configs/base/models/ 에 있는 코드를 가져오겠다는 의미.