git 다운 해주기
github에 프로젝트 만들기
git bash에 들어가서
- git config --global user.name "영어이름"
- git config --global user.email "이메일"
- git config --list 로 이름과 메일이 잘 들어갔는지 확인!
코딩프로그램에 들어가서 터미널
- git init
- git add . (.은 모든 파일을 말함. 만약 html만 원하면 git add index.html)
- git status(보여주기 용)
- git commit -m "first commit" (첫번째 히스토리 이름)
- git remote add origin https://github.com/son-gyeonga/shooting-game.git 깃허브에 올라온 …or create a new repository on the command line에 6번째줄 입력
- git remote -v 로 잘 들어갔는지 확인!
- git push origin master (보내기!)
수정한후
- git add . (추가작업)
- git status (수정된 작업을 알려줌)
- git commit -m "second commit"
- git push origin master