less than 1 minute read

Local Repository

현재 디렉토리에 로컬 저장소 만들기

1
git init

작업 트리의 파일 상태 확인하기

1
git status

config 설정

유저 정보 설정

1
2
git config --global user.name ["유저명"]
git config --global user.email [이메일]

commit 편집 에디터 설정

1
2
3
4
git config --global core.editor [프로그램명]

git config --global core.editor vim # vim 에디터
git config --global core.editor notepad-plus-plus # noptepad++

정보 보기

1
git config --list

Staging Area

파일 등록하기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
git add 파일명

# 예시
git add test.txt

# .txt 패턴의 파일 등록
git add *.txt

# 작업 트리에서 .txt 패턴의 파일 등록
git add "*.txt"

# 디렉토리의 모든 파일 등록
git add *

# 작업 트리의 모든 파일 등록
git add .

파일 등록 취소하기

1
2
3
4
5
6
7
8
git reset 파일명
git rm --cashed 파일명

# 예시
git reset test.txt

# 모든 파일 등록 취소
git reset