etc

Git 사용법

오늘도개발 2023. 4. 26. 17:16

 

1. 저장소 종류

 

 - git 의 저장소 종류는 local(작업 PC) 과 server(원격 저장소) 가 있다.

 

 - server 로는 github을 주로 사용한다.

 

 2. 용어 정리

 

 - commit : 작업한 파일을 백업에 합치는 기능

 

 - push : 작업한 파일을 원격 저장소에 올릴때 사용

 

 - pull : 원격 저장소에 있는 자료를 다운 받을 때 사용

 

 - merge : 2가지 이상의 작업물을 결합 할 때 사용

 

 - conflict : merge 작업시 동시에 같은 파일을 수정 하였을 때 발생 (충돌)

 

 

3. git 관련 정보 사이트

 

https://www.w3schools.com/git/default.asp

 

Git Tutorial

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

 

'etc' 카테고리의 다른 글

[알고리즘] MST  (0) 2024.10.21
[JavaScript] JSONView 브라우저에서 Json 표기 변환  (0) 2024.01.24
[MAC OS] Docker Download 및 설치  (0) 2022.08.06