본문 바로가기
개발/Unity

Unity) UPM(Unity Pacakage Manager)특정 버전 선택하기(Git Dependencies)

by 테샤르 2022. 10. 23.

UPM(Unity Pacakage Manager) 특정 버전 선택하기(Git Dependencies)

UPM(Unity Package Manager)를 사용하는 과정에서 특정 패키지 버전을 사용해야하는 상황이 생길때(항상 최신이 아닌경우) Version 또는 Branch, Commit Hash를 고정할수 있다. 혹은 파일경로도 가능하다.

 

방법은 다음과 같다.

사용방법 예시 (기본주소 : https://github.example.com/myuser/myrepository.git)
가장 최근 버전 "https://github.example.com/myuser/myrepository.git"
특별한 브런치 "https://github.example.com/myuser/myrepository.git#my-branch"
특별한 버전(Tag) "https://github.example.com/myuser/myrepository.git#v2.0.0"
커밋 해쉬 "https://github.example.com/myuser/myrepository.git#9e72f9d5a6a3dadc38d813d8399e1b0e86781a49"
특정 경로 "https://github.example.com/myuser/myrepository.git?path=경로"
경로 + 버전 "https://github.example.com/myuser/myrepository.git?path=경로#v2.0.0"

 

반응형

 

Unity UPM Git : [링크]

 

Unity - Manual: Git dependencies

Local folder or tarball paths Git dependencies When the Package Manager fetches a package from a Git repository, it adds the package locally to your project. This allows you to easily test unpublished changes, but you cannot use it to contribute to that Gi

docs.unity3d.com

 

 

★☆☆☆☆

 

반응형

댓글