Programming/Git

3. Git add

zero_two12 2020. 5. 4. 14:49

1) cat first.txt

first.txt 생성하여 cat명령어 이용시 txt파일 내 존재하는 내용을 plot해준다.

 

2) git status

아직 git이 해당경로에 있는 first.txt을 인식하고 있지 않다.

 

3) git add first.txt

git아 first.txt파일 관리 해준다.

git status

git으로 해당 파일을 관리중이다.