
[git] 자주 쓰는 git 명령어 정리
·
MEMO
1. git init$ git initInitialized empty Git repository in C:[path]현재 디렉터리 아래에 .git 디렉터리를 만들고, 여기에 git 저장소 초기화하기 2. git status$ git statusOn branch masterNo commits yetUntracked files: (use "git add ..." to include in what will be committed) [files]nothing added to commit but untracked files present (use "git add" to track)현재 git 저장소 상태 확인하기 3. git add$ git add .커밋할 파일 추가하기 4. git commit$ git c..