일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 영어
- EBS어학당
- python
- 1759번
- 분할정복
- 백준
- 9251번
- 프로그래머스
- 11727번
- 1793번
- WebSecurityConfigurerAdapter
- SecurityFilterChain
- 18406번
- github
- 1057번
- 신규아이디추천
- 1992번
- programmers
- 11047번
- Java
- 2630번
- Spring Security
- caniuse
- codility
- 알고리즘
- 권주현의 진짜 영국 영어
- BinaryGap
- 입이 트이는 영어
- 파이썬
- 2163번
Archives
- Today
- Total
철갑이의 이모저모
[github] git push error 해결 방법 본문
728x90
1. fatal: Authentication failed for 'https://~' 발생시
- github user id, password 확인
- 해당 저장소가 예전 프로젝트와 연결 되어있는지 확인
$ git remote -v // 리모트 저장소 확인
$ git remote remove origin // 저장소 다르다면 삭제
$ git remote add origin repository주소 // 원격 저장소 주소 등록
2. error: failed to push some refs to 'https://~' 발생시hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
- 깃과 로컬이 동기화가 되어있지 않아서 발생
$ git pull --rebase origin master //동기화
참고용 git 공부 사이트
728x90
'Git' 카테고리의 다른 글
[github] github에 프로젝트 올리기(default 브랜치가 master -> main 으로 변경) (0) | 2022.07.09 |
---|