깃허브 저장소 복제
git clone https://github.com/kkimsungchul/otel.git
모든 브런치 내려받기
git branch -r | grep -v ‘->’ | while read remote; do git branch –track “${remote##origin/}” “$remote”; done
git fetch –all
git pull –all
원격 저장소 remote 제거
git remote remove origin
새 저장소 remote 추가
git remote add origin https://본인의.깃허브.저장소의.URl
업로드
git push -u origin –all
git push -u origin –tags