ToBe끝판왕

[ GITHUB ] 기초 사용법 본문

■ 프로그래밍 SKILLS/형상관리

[ GITHUB ] 기초 사용법

업그레이드중 2022. 5. 23. 10:23
반응형

 


 

Github 사용법

 

1) 계정 등록

https://github.com/

 

GitHub: Where the world builds software

GitHub is where over 83 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

 

 

 

2) 저장소( Repository ) 의 생성과 사용

•  New repository 클릭

•  Repository name에 저장소 이름 입력

•  Description에 저장소에 대한 설명 추가 입력

•  저장소 유형은 Public

 

 

 

3) 브랜치( Branch ) 시작과 관리

•  좌상단 Branch : main 클릭

•  edit 입력하면 밑에 " Create branch: edit from main " 뜨는데, 클릭하면 브랜치 생성

•  수정내용이 없기때문에 main 브랜치와 내용이 동일

 

 

 

4) 파일 수정 / Github push( 푸시 )

•  README.md 클릭

•  연필아이콘 클릭

•  파일에 변경내용 작성

•  Commit 메시지 작성 후, Commit changes 클릭

 

=> 수정된 내용이 edit 브랜치에 적용됨, 따라서 edit 브랜치는 main브랜치와 다른내용을 가짐

 

 

 

 

5) pull( 풀 ) 요청과 병합

•  main 브랜치외 수정된 브랜치가 생겼으므로 pull 가능

•  Pull request 탭 클릭 후, New pull request 클릭

•  상단의 "compare : edit " 선택

•  수정된 내용 확인

    -  추가된 내용 : 녹색

    -  빠진 내용 : 빨간색

•  수정 내용 확인후, " Create pull request " 클릭

•  main 브랜치와 병합 , " Merge pull request " 클릭

•  " Confirm merge " 클릭후, edit 브랜치는 필요가 없기 때문에 "Delete branch" 클릭하여 브랜치 삭제

 

 

 

 

 

반응형
Comments