github 에 올리기

  1. git init

    (초기화)(생성)

    .git 생성

  2. git remote add origin [깃허브저장소 주소]

  3. git remote -v

    origin  [깃허브저장소 주소/깃허브저장소 이름.git]  (fetch)
    origin  [깃허브저장소 주소/깃허브저장소 이름.git]  (push)
    
  4. git add [파일] / .[: 전체 파일 넘기기]

  5. git commit -m "[이름]"

    [master 어쩌구] [이름]
    one file changed, 0 insertions(+), 0 deletions(-)
    create mode 숫자나열 [폴더 이름]
    
  6. git log

    commit  어쩌구저쩌구 (HEAD → master)
    Author : seungyle <[email protected]>
    Date : 날짜
    
    		커밋메세지
    
  7. git push origin master

  8. git log

    commit  어쩌구저쩌구 (HEAD → master, origin/master)
    

github 내려받기

  1. git clone [깃허브저장소 주소]