README.md
Repository
(master)
: branchREADME.MD 생성하기
커밋들이 저장되는 곳
commit 하면 untracked -> modified 됨
이 과정이 반복되며 commit 됨
git status
: 파일 상태 확인add
후 status
하면(use "git restore <file>..." to discard changes in working directory)
git add
git commit -m
'메세지'git log
: 기록 확인git diff
: 기록간의 차이 확인지금까지는 git(Local Repository)만 사용
Staging Area에 대하여
이제 Remote Repository를 연결해보자
Git hub에서 NEW Repository 생성
Github 연동
git remote add origin url
: Repository와 연동
origin : <repo_name> 별명
git remote -v
: 연동 확인
git push -u origin master
Github web 상에서 수정할 수 있지만 지양해야함
git add - git commit - git push
순서