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
- JPQL
- fullcalendar
- LIST
- 제너릭
- jQuery값전송
- joinfetch
- jQuery값전달
- jscalendar
- 페치조인
- JPA
- values()
- namedQuery
- 페이징
- 스프링데이터흐름
- paging
- 대량쿼리
- javaservlet
- 제네릭
- 프로젝트생성
- 자바서블릿
- 엔티티직접사용
- 벌크연산
- fetchjoin
- Hibernate
- Generic
- javascriptcalendar
- jQueryUI
- calendar
- springflow
- JQuery
Archives
- Today
- Total
가자공부하러!
git 원격저장소에는 없는 브랜치가 로컬에는 있어서 pull, fetch가 안될 때 본문
공부/버전관리(Github, Gitlab...)
git 원격저장소에는 없는 브랜치가 로컬에는 있어서 pull, fetch가 안될 때
오피스엑소더스 2021. 6. 30. 22:00원격저장소에는 분명 없는 브랜치인데
로컬에서 pull받으려고 하면 아래처럼 오류가 나는 경우가 있다.
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from 원격저장소
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:899)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1114)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1145)
at hudson.scm.SCM.checkout(SCM.java:505)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
at hudson.model.Run.execute(Run.java:1880)
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:543)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command...
error: cannot lock ref '브랜치': '브랜치' exists; cannot create '브랜치'
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2372)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1985)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:80)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:563)
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:897)
... 11 more
ERROR: Error fetching remote repo 'origin'
이럴 땐?
$ git remote prune origin
$ git fetch --prune
끝
'공부 > 버전관리(Github, Gitlab...)' 카테고리의 다른 글
Github 기초(4) - 임시저장(stash) (0) | 2020.10.05 |
---|---|
Github 기초(3) - 리베이스(rebase) (0) | 2020.03.30 |
Github 기초(2) - 브랜치 생성, 브랜치 병합, 충돌 해결 (0) | 2019.11.04 |
Github 기초(1) - 로컬에 생성된 프로젝트를 새 원격저장소에 저장 (4) | 2019.11.01 |
Github - 로컬드라이브 연동 (0) | 2019.06.18 |
Comments