무회blog

(깃)git bash, git status 상태 확인하기, Untracked , Tracked 상태 확인, 000 본문

IT/형상관리

(깃)git bash, git status 상태 확인하기, Untracked , Tracked 상태 확인, 000

최무회 2021. 2. 2. 16:20

, D 드라이브에 폴더 이름 "test" 로 폴더 만들기

 mkdir test

, test 폴더 들어가기 

$ cd test

 

, git repository 만들기 (깃을 초기화하고 여기서 사용할거라고 생각)

$ git init 

 

, 파일 hello.txt 를 만들어서 안에 hello world! 라는 내용을 넣어줌 

$ echo hello world! > hello.txt

 

, 파일 hello.txt 상태를 확인 

$ git status
On branch master

No commits yet

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        hello.txt

nothing added to commit but untracked files present (use "git add" to track)

,, 상태 확인하면 위처럼 나오는데 hello.txt 가 Untracked files:(트래킹이 안되있는 파일로 되어있다는것을 확인 가능: 트래킹 되면 커밋 할수 잇다고 생각하는게 편할수 있음)

,, 그럼 이제 저 hello.txt 파일 트래킹 할 차례 (다시 말해서 커밋할 스테이징 공간에 옮겨줌) 

 

, hello.txt파일을 스테이징 에 옮기기 (tracked 시키기)

, 파일 hello.txt 를 커밋하기 전 스테이징에 넣어줌 , 

$ git add hello.txt

 

, 파일 hello.txt 상태를 확인 

FAMILY@DESKTOP-001 MINGW64 /d/test (master)
$ git status
On branch master

No commits yet

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

        new file:   hello.txt


FAMILY@DESKTOP-001 MINGW64 /d/test (master)
$

 

Comments