일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- git
- SQL
- JavaScript
- HTTP Status 404
- HTTP Status 500
- sql developer
- 제약조건
- Oracle SQL
- alias
- Java
- 이클립스
- github
- Oracle DB
- HTML
- tomcat
- oracle
- 성적프로그램
- jQuery
- rownum
- 과정평가형
- ||
- JSP
- CRUD
- 한글 인코딩
- 답변형 게시판
- group by
- Bootstrap
- 부트스트랩
- distinct
- 모조칼럼
Archives
초급의 끄적거림
error:src refspec master does not match any 본문
에러 내용
error: src refspec master does not match any
error: failed to push some refs to 'git의 URL'
해결방법
repository에 commits한 내용이 없기 때문에 server에 추가할 branch 또한 존재하지 않아서 발생함
고로, repository가 비어있음을 의미
→ repository에 commits할 내용을 만들면 됨
touch '파일명'
git add '파일명'
git commit -m "메세지"
git push - u origin master
'기타 > Git, Github' 카테고리의 다른 글
[Git/Github] 깃(git) pull 실패 (0) | 2019.09.09 |
---|---|
[Git/Github] 이클립스에 연동한 git 아이디 삭제 (0) | 2019.08.29 |
[Git/Github] Github에서 파일 삭제 / 폴더 올리기 (0) | 2019.08.28 |
[Git/Github] git의 동작 원리 / repository (0) | 2019.08.25 |
[Git/Github] git과 github, 환경설정 그 외 (0) | 2019.08.20 |
Comments