이것저것 해보기🌼

Git 시작하기/기본 명령어 본문

Git

Git 시작하기/기본 명령어

realtree 2021. 7. 7. 14:43

Git 

컴퓨터 파일의 변경사항을 추적하고 여러 사용자들 간에 해당 파일 작업을 조율하기 위한 대표적인 버전관리 시스템(VCS)

 

 

git 설치

https://git-scm.com/

 

Git

 

git-scm.com

>git --version 으로 버전 확인

 

github 가입

https://github.com/

 

GitHub: Where the world builds software

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

 

 

기본 설정하기

초기 설치 후 한번만 설정하면 됨

 

1) 개행문자 설정

##Windows

> git config --global core.autocrlf true

##macOS

$ git config --global core.autocrlf input

 

2) 사용자 정보

## 커밋(버전 생성)을 위한 정보 등록

> git config --global user.name 'YOUR NAME'

> git config --global user.email 'YOUR_EMAIL'

 

3) 구성확인

## 종료 : q 

> git config --global --list

 

 

버전 관리하기

 

1) 현재 프로젝트에서 변경사항 추적(버전 관리)를 시작

> git init

 

2) 변경사항을 추적할 특정 파일(process.c)을 지정

> git add process.c

 

3) 모든파일의 변경사항을 추적하도록 지정

> git add .

 

4) 메시지(-m)과 함께 버전을 생성

> git commit -m '프로젝트1'

 

프로젝트1 이라는 이름으로 버전이 만들어짐

ex) 프로젝트1 을 만든 후, master 내의 파일 process.c 를 수정 시,

> git commit -m 'process.c 추가'

수행하면 process.c 가 추가된 'process.c 추가' 버전이 가장 최신 버전이 만들어짐

 

5) origin 이란 별칭으로 원격저장소를 연결

> git remote add origin https://github/com/내계정/저장소이름

 

* 저장소 주소 확인하기(github)

 

> git log

commit 정보 확인하기

 

이후 github 로그인으로 인증을 거치면 해당 저장소에 master가 업로드된다.

 

6) origin 이란 별칭의 원격저장소로 버전내역 전송 (업로드)

> git push origin master 

 

 

'Git' 카테고리의 다른 글

Netlify 활용해서 사이트 배포하기  (0) 2021.07.07