728x90
반응형
🎯 Goal
- STS Renaming project error 에러 해결
- 프로젝트를 STS에서 깃 클론 해서 다시 가져오는 방법을 안다.
⚠️ 문제 현상
STS에서 프로젝트 파일을 그대로 복붙했다가 아래와 같은 에러가 발생 했다.
org.eclipse.buildship.core.internal.UnsupportedConfigurationException: Project at 'C:\Work\Git\LDS_Homepage' can't be named 'lds' because it's located directly under the workspace root. If such a project is renamed, Eclipse would move the container directory. To resolve this problem, move the project out of the workspace root or configure it to have the name 'LDS_Homepage'.
🔑 에러 원인
프로젝트명과 settings.gradle의 rootProject.name의 명이 달라서 그렇다.
💊 해결 방법
프로젝트를 STS에서 깃 클론 해서 다시 가져오는 방법이 깔끔하다.
1. STS (이클립스) 실행
왼쪽 메뉴중 import projects 선택
메뉴 ▶ file ▶ import ▶ git ▶ project from git(with smart import) 선택
2. Clone URI 선택 ▶ Next 선택
3. git url 입력 및 git 접속 정보 입력 ▶ Next 클릭
4. 연결할 branch선택 ▶ Next 클릭
5. 저장 폴더명 ▶ settings.gradle의 rootProject.name의 명과 동일
ex) settings.gradle의 rootProject.name의 명 ▶ lds
C:\Work\Git\lds ▶ lds 로 폴더명 동일하게 맞춘다.
6. Local Destination (저장 폴더 선택) ▶ Next 클릭
소스를 다운받는 프로그래스바가 생성된 이후 모두 받고 완료 ▶ Finish 버튼 클릭
728x90
반응형
'📌 Back End > └ Spring' 카테고리의 다른 글
[Spring] The project cannot be built until build path errors are resolved 에러 현상 해결 방법 (0) | 2024.05.09 |
---|---|
[Spring] STS에서 git clone 으로 프로젝트 import 하기 (0) | 2024.05.09 |
[Spring] STS 4 (Spring Tool Suite 4) 프로젝트 자바 버전 변경 (0) | 2024.05.03 |
[Spring] 소프트웨어 배포 생명 주기 (software release life cycle) (0) | 2023.07.19 |
[Spring] Thymeleaf(타임리프)란? (+기본적인 사용법) (1) | 2023.03.16 |