Local 프로젝트 GitHub에 올릴때 명령어 정리
2021. 1. 23. 00:28ㆍdev
git 초기화작업 (.git파일 생성)
git init
현재 git저장소의 상태 보기
git status
파일 추가
git add. git add --all git add <file name>
파일 삭제
git rm -rf {삭제하고 싶은 폴더나 파일}
커밋
git commit -m "first commit"
깃허브 레퍼지토리에 연결
이부분은 처음 레퍼지토리 만들고 복사해오면 된다
git remote add origin {원격 서버주소}
잘 연결되었는지 확인
git remote -v
push
git push -u origin master
'dev' 카테고리의 다른 글
Python 공백없이 입력받아 list만들기: strip(), rstrip(), lstrip() 사용법 (0) | 2021.04.09 |
---|---|
티스토리 코드블럭 커스터마이징, 폰트 변경방법 (0) | 2021.02.24 |
[Spring] MyBatis 연동 및 설정방법 (0) | 2021.01.21 |
[Spring] 스프링 MVC모델 예제 - Controller와 View연결 (0) | 2021.01.20 |
[Spring] MVC 모델 개념정리 (0) | 2021.01.20 |