github이나 gitlab에 만들어 놓은 Repository를 최초에 컴퓨터로 받아올 때, git clone으로만 해야하는 얕은 지식을 갖고 있었다.. git clone 뿐 아니라 다음의 과정을 통해서도 Repository를 땡겨올 수 있었다. mkdir 명령어로 git repository를 다운 받을 폴더를 만든 후에(레포지토리 명과 동일한 디렉토리를 만든다) 1. git init 2. git remote add origin (별칭) 레포URL ->ex) git remote add origin (pb) https://github.com/~ 별칭은 생략 가능하다. 3. git pull origin master(혹은 main) // 간혹 fatal: couldn't find remote ref maste..