728x90
- GitHub 가입
- Git 설치 https://git-scm.com/
Git
git-scm.com
- 설치 후 Git bash 열기
- git config --global user.nmae "my_name"
- git config --global user.email "my_email"
- git config --list (정보확인)
Github
- git init
- git add .
- git status
- git commit -m "first commit"
- git remote add origin ~~~~ (github에서 붙여와라)
- git remote -v (연동 잘 되었는지 확인)
- git push origin master
'코딩 > Git' 카테고리의 다른 글
변경사항이 제대로 반영 안될 경우 / 특정 파일 삭제하기 (0) | 2024.05.18 |
---|---|
협업을 위한 git 커밋컨벤션 설정하기 (0) | 2024.05.12 |
README 작성하기 (0) | 2024.03.14 |
commit 수정/삭제하기 (0) | 2024.02.27 |
Git에 React 페이지 배포하기(포트폴리오 만들기 (GitHub Desktop) (0) | 2023.12.14 |