Skip to content

1. Git 써보기


1. Repository 생성하기

git init


2. User 정보 설정하기

git config user.name "ExampleName"
git config user.email "example@example.com"


3. Working Tree에서 Staging Area로 저장하기

git add ExampleFile
git add .


4. Staging Area에서 Repository로 저장하기

git commit -m "ExampleMessage"


5. 상태 확인하기

git status


6. Git add 취소하기

git reset ExampleFile