일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 베드락
- 구글 포토
- git
- 영상 나누기
- 42Header
- insta360
- GooglePhoto
- 엠프리스
- google photo
- SH권한부족
- Cox
- 42헤더
- 다른저장소파일
- submodule
- 하이시에라 도커
- vue
- 마인크래프트서버
- 인스타360
- APS-C
- 360도 영상
- 오라클클라우드
- 쌍따옴표
- 엔데버
- 구글포토
- calc
- ffmpeg
- chmod
- 마인크래프트
- APSC
- High Sierra Docker Desktop
Archives
- Today
- Total
목록submodule (1)
개발하다 정리해보자
다른 저장소의 파일을 그대로 가져와서 사용하는 법
깃을 사용하면서 다른 저장소에 있는 파일을 그대로 나의 프로젝트에 사용하고 싶은 일이 있었다. 이런 경우에는 submodule과 심볼릭 링크를 사용하면 되었다. $ git submodule add https://github.com/hijae/open-fuji-recipes-profiles $ ln -s hijae/open-fuji-recipes-profiles/makeFP.py $ git add .gitmodules makeFP.py $ git commit -m "add a symbolic link to makeFP.py with the respective submodule" 위와 같이 git에 서브모듈을 설정하고 원하는 파일을 심볼릭 링크로 지정한 후 커밋하면 된다. 혹시나 클론을 받아왔을때 동작하지 ..
개발
2023. 4. 30. 00:57