mkdir <파일 이름>
cd <파일 이름>
git init
mkdir로 파일 생성하고 해당 파일로 위치 이동 후, git init 으로 git이 해당 폴더 관리하게 한다.
ls -all
git 파일이 숨겨져 있기 때문에 터미널에서 ls -all을 입력하거나 , command + shift + . 을 누르면 숨겨진 파일 확인 가능하다.
git status
git 현 상태 볼 수 있는 코드
touch exam.txt
해당 폴더에 exam.txt 파일을 생성한다.
git add <file>
Working Directory에 있던 파일 Index(Stage)로 add 해준다.
git commit -m 'commit name' <file>
Index(stage)에 있던 파일 Head로 commit 해준다.
'Git' 카테고리의 다른 글
[Git] Log and Diff (0) | 2022.12.18 |
---|---|
[Git] Remote Repository_ clone / branch / checkout / delete (0) | 2022.12.15 |
[Git] Remote Repository_ remote / add / push / pull (0) | 2022.12.14 |
Git 기본용어 (0) | 2022.12.14 |