Study/Git
[Git] 로컬 체크아웃
나른한댕댕이🐶
2021. 1. 15. 16:29
728x90
반응형
GitHub 사용하기
GitHub: Where the world builds software
GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat...
github.com
GitHub 레파지토리에 대한 디렉터리를 생성하는 명령어(origin 원격 저장소가 생성된다.)
방법 : git clone [github주소]
예시 : git clone https://github.com/baekji919/TestRepos.git
원격 저장소(GitHub)에 대한 별칭을 지정하는 명령어
방법 : git remote add [별칭] [git 주소]
예시 : git remote add jihyun https://github.com/baekji919/TestRepos.git
원격 저장소 리스트 확인하기
git remote -v
728x90
반응형