코드저장소 repository생성 방법과 컴퓨터에서 작업한 코드를 업로드하는 방법
깃허브에 회원가입 후 로그인, repositories 탭으로 이동
우측 상단에 초록색 new 버튼을 눌러 새 repository 생성
repository의 이름과 공개 여부 설정
컴퓨터에 프로젝트를 만들 폴더를 생성
폴더로 이동 후 cmd창에서 아래 명령어 입력하면 코드 업로드 가능
git init
git remote add origin https://github.com/bluesunset0207/web-study.git
(git remote add origin https://github.com/깃허브 아이디/저장소이름.git)
git add .
git commit -m 'd'
git push origin master
git remote add origin https://github.com/깃허브 아이디/저장소이름.git
컴퓨터의 폴더를 깃허브의 코드저장소에 연결
git add .
파일을 업로드할 준비
git commit -m 'd'
comment를 보낼 수 있다.
git push origin master
master branch에 파일 전송
'웹개발' 카테고리의 다른 글
MySQL-Sequelize (0) | 2023.10.15 |
---|---|
Node.js (0) | 2023.10.11 |
JavaScript (0) | 2023.10.11 |
Css (0) | 2023.10.11 |
Html (0) | 2023.10.11 |