Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
Tags
- vue 지역 컴포넌트
- vue mixin
- netlify redirect
- SCSS use
- Spacer
- 리액트
- 쌓임맥락
- 폼 입력 바인딩
- vuex map
- 프로그래머스 K_Digital Training
- 프로그래머스 프론트엔드 데브코스
- KDT 프로그래머스 데브코스 프론트엔드
- vue 이벤트 수신
- 프로그래머스 데브코스
- SCSS forward
- postcss
- 이벤트 수식어
- git 같은계정 다른 컴퓨터
- 프로그래머스 데브코스 프론트엔드
- SCSS import
- 다른컴퓨터에서 git사용
- intersection opserver
- 리스트 렌더링
- SCSS extend
- react next
- flex
- 고양이 사진 검색기
- Vue
- nextjs사용법
- KDT 프로그래머스
Archives
- Today
- Total
혼자 적어보는 노트
error: failed to push some refs to 'github repository 주소' 본문
error: failed to push some refs to
검색을 해보니 다양한 상황에서 발생이 되었었고
보통 로컬과 원격의 저장소의 상태가 다를 때 발생 되는 문제였다.
내가 접한 상황:
로컬에서 기존에 작업되어있는 파일들을 복사후 새 폴더를 생성하여 붙여넣은 후
github에서 레포지토리를 생성하고 연결하려는 과정에서 발생했다.
git init
git remote add origin 깃헙주소
git branch -M main
git push -u origin main // *이 명령어 시 에러 발생
error: failed to push some refs to 'github repository 주소'
✅ 해결
git add .
git commit -m "커밋 메세지 작성"
git push -u origin main
새로 추가된 내용들을 add/commit 후 진행하면 된다.
다시 생각해보니 아무 것도 없는데 push가 될리가,,
'Error' 카테고리의 다른 글
[Webpack] webpack-dev-server script 2번 실행 (0) | 2022.09.01 |
---|---|
Component definition is missing display name (0) | 2022.07.29 |
모바일 이미지 업로드 시 이미지 회전 현상 (0) | 2022.07.12 |
unable to resolve dependency tree (0) | 2022.05.27 |
Manifest: Line: 1, column: 1, Syntax error (0) | 2022.03.10 |
Comments