오늘도 한 뼘 더

[Git] 로컬 체크아웃 본문

Study/Git

[Git] 로컬 체크아웃

나른한댕댕이🐶 2021. 1. 15. 16:29
728x90
반응형

GitHub 사용하기

github.com/

 

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
반응형

'Study > Git' 카테고리의 다른 글

[Git] Git Conflict 해결방법  (0) 2022.08.02
[GitHub] Git Hub에 SSH 접속 설정하기  (0) 2022.06.17
[Git] 원격 브랜치 조회/삭제하기  (0) 2022.02.18
[Git] Cherry-pick (원하는 commit만 merge하기)  (0) 2022.02.07
[Git] Git 입문  (0) 2020.12.16
Comments