서로 다른 컴퓨터에서 원격 저장소 함께 사용하기 원격저장소 복사 : $ git clone test-1 저장소 이용 git_home: 사용자 집 git_office : 사용자 사무실 http 주소사용 $ git clone https://github.com/JangJohn-Lee/test-1.git git_home : 사용자 집 $ git clone https://github.com/JangJohn-Lee/test-1.git git_office : 사용자 집 컴퓨터에서 작업하고 올리기 $ cd ~/git home $ vi f1.txt c 추가 커밋 "add c" $ git push 사무실에서 내려받아 작업 $ cd ~/git_office $ git log $ git pull $ vi f1.txt d 추가 커..