Git

working directory = working tree staging area = index repository = commit하면 staging area에 있는 파일들의 모습이 스냅샷처럼 저장됨 1. Git 기본 git init : 현재 디렉토리를 Git이 관리하는 프로젝트 디렉토리(=working directory)로 설정하고 그 안에 레포지토리(.git 디렉토리) 생성 git config user.name 'codeit' : 현재 사용자의 아이디를 'codeit'으로 설정(커밋할 때 필요한 정보) git config user.email 'teacher@codeit.kr' : 현재 사용자의 이메일 주소를 'teacher@codeit.kr'로 설정(커밋할 때 필요한 정보) git add [파일 이름..
감자 수제비
'Git' 카테고리의 글 목록