(GIT)Local Repository 생성

지며리·2023년 1월 10일
0
post-thumbnail
post-custom-banner

Local Repository를 생성해보자

Git init

  • 폴더에서 Git을 초기화하는 명령어
  • 해당 폴더를 Git이 관리하기 시작


ls -all

  • 숨김 폴더 포함, 현 위치 내 모든 폴더 표기

touch test.txt

  • 현위치에 test.txt 파일명의 빈 파일 생성

git status

  • git에 존재하는 파일 확인
  • working directory: 작업공간 / index(stage) : 준비 영역 / head: 최종확정본 존재
  • untracked files : working directory에 있지만 index(stage)에 없는 파일
  • changes to be committed : index(stage)에 있지만 head에 없는 파일


git add

  • Working Directory에서 변경된 파일을 index(stage)에 추가

git commit -m "commit에 대한 설명" file_name

  • index(stage)에 추가된 변경사항을 head에 반영(확정)
profile
쉽고 유익하게 널리널리
post-custom-banner

0개의 댓글