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 |
Tags
- web.xml
- 단축키
- netsh
- xargs
- context
- JavaScript
- Quartz
- vscode
- maVen
- VirtualBox
- bash
- import
- plugin
- Source
- lsof
- ssh
- IntelliJ
- profile
- Windows
- GIT
- Windows 10
- find
- resource
- grep
- Eclipse
- 줄바꿈 문자
- port
- 네트워크
- Mac
- tomcat
Archives
- Today
- Total
develog
[git] git pull 시도시 에러, fatal: Could not read from remote repository. 본문
git pull 시도시 아래 에러가 발생
$ git pull
ERROR:
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
git remote update 후 다시 시도해 본다
$ git remote update
# 저장소 상태를 확인한다
$ git remote -v
저장소를 제거한 후 다시 연결해서 시도해본다
$ git remote remove origin
$ git remote add origin git@github:my/repo
$ git remote -v
Comments