> git fetch --tags --progress https://github.com/znftm97/CQRE_2.git +refs/heads/*:refs/remotes/origin/* # timeout=10
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/znftm97/CQRE_2.git
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:1004)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1245)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1305)
at hudson.scm.SCM.checkout(SCM.java:505)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1213)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:639)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:511)
at hudson.model.Run.execute(Run.java:1889)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:100)
at hudson.model.Executor.run(Executor.java:433)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/znftm97/CQRE_2.git +refs/heads/*:refs/remotes/origin/*" returned status code 1:
git 저장소에 있는 코드를 fetch 해오지 못한다.
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress
키워드로 구글링을 해보자.
Unable to fetch origin - Workspace corruption? · Issue #466 · jenkinsci/ghprb-plugin
git config --global --unset credential.helper
sudo git config --system --unset credential.helper
Unable to fetch origin - Workspace corruption? · Issue #466 · jenkinsci/ghprb-plugin
젠킨스 서버의 /var/lib/jenkins/workspace 경로에 젠킨스의 아이템 이름으로된 디렉토리가 하나 있다.
cqre_deploy 디렉토리이고, bak는 백업용으로 만들었는데
저 cqre deploy는 뭔지 모르겠다.. 띄어쓰기 되어 있어서 접근도 안된다
그래서 그냥 모두 삭제했다.
sudo rm -r /var/lib/jenkins/workspace/*
다시 젠킨스를 빌드해보니 정상적으로 빌드 성공했다.
배포 후 cqre_deploy 디렉토리가 새로 생겼다.