git init
(초기화)(생성)
.git 생성
git remote add origin [깃허브저장소 주소]
git remote -v
origin [깃허브저장소 주소/깃허브저장소 이름.git] (fetch)
origin [깃허브저장소 주소/깃허브저장소 이름.git] (push)
git add [파일] / .[: 전체 파일 넘기기]
git commit -m "[이름]"
[master 어쩌구] [이름]
one file changed, 0 insertions(+), 0 deletions(-)
create mode 숫자나열 [폴더 이름]
git log
commit 어쩌구저쩌구 (HEAD → master)
Author : seungyle <[email protected]>
Date : 날짜
커밋메세지
git push origin master
git log
commit 어쩌구저쩌구 (HEAD → master, origin/master)