-
git 명령어(init, add, commit, status, restore, log)GIT 2023. 9. 20. 21:13728x90
1. 터미널 열기
2. git init
- 새로운 Git 저장소(repository)를 생성할 때 사용하는 Git 명령어입니다.
git init
3. add와 commit
- git add로 기록을 남기고 싶은 파일을 선택을 합니다.
- git commit으로 전송을 합니다.
git add 파일명 git commit -m '메세지'
- staging area & repository
- staging area는 commit을 하기 전에 commit 할 파일을 골라놓은 곳입니다.
- (git add)행위를 staging이라고 말합니다.
- repository는 commit 된 파일의 버전들을 모아놓는 곳입니다.
4. 여러개 파일 add 하는 방법
- N개의 파일 add 하고 싶은 경우
git add app.txt test.html
- 전체 파일을 add 하고 싶은 경우
git add .
5. status
- status로 변경된 파일, 스테이징된 파일 등 알려줍니다.
git status
6. restore
- (git add)스테이징된 파일을 취소할때 입력하면 됩니다.
git restore --staged 파일명 git restore --staged .
7. log
- commit 기록을 한번에 보여줍니다.
git log --all --oneline
728x90'GIT' 카테고리의 다른 글
git restore, reset, revert (0) 2023.10.14 git merge 방법(3-way, fast-forward, rebase, squash) (0) 2023.09.23 git branch 만들기, 합치기, 삭제하기 (0) 2023.09.23 VS 코드에서 간단한 git 사용하기 (0) 2023.09.20 git 설치하는 방법 (0) 2023.09.20