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
- 신의 시간술
- 파이어족
- 퀀터스 하지 마세요
- 자산배분
- 2%룰
- 연금저축계좌
- 에드워드 소프
- python
- 파이어족 포트폴리오
- 니콜라스 다바스
- 마크 미너비니
- tensorflow
- 데이빗 라이언
- 마크미너비니
- 통계적 유의성
- 김프
- 아웃풋 트레이닝
- 파이어족 자산
- mark minervini
- H는 통계를 모른다.
- 파이어족 저축
- eclipse
- 이클립스
- GIT
- 파이어족 자산증식
- 추세추종 2%룰
- 퀀트 트레이딩
- 제시 리버모어
- AWS
- 데이비드 라이언
Archives
- Today
- Total
머신러닝과 기술적 분석
Git subtree 사용방법 본문
728x90
1. 다른 project를 가져와서 main project의 subdirectory 에 반영
git remote add sub https://github.com/penny4860/Vehicle-Detection
git subtree add --prefix=subprojects/sub --squash sub master
- sub project의 history를 유지한 상태에서 merge 하고 싶으면
--squash
옵션은 생략한다. - git staging area 가 clean 상태가 아니면 안된다. git staging area를 clean 상태로 만들고, git checkout 을 다시해보자.
2. main project에서의 수정사항을 sub project에 반영
git subtree push --prefix=subprojects/sub sub from-main-project
- 이렇게 하면 subproject의 remote repo에
from-main-project
이라는 이름의 branch로 push 된다.
3. sub project의 update 내용을 main project에 반영
git subtree pull --prefix=subprojects/sub sub master
728x90
반응형
'Git' 카테고리의 다른 글
git history에서 파일을 삭제하는 방법 (0) | 2017.08.27 |
---|---|
이클립스(eclipse) 에서 git conflict 났을 때 해결하는 방법 (0) | 2017.08.25 |
Git subtree - 다른 프로젝트를 sub directory로 가져오기 (0) | 2017.08.16 |
Git 에서 single repo의 email address 만 바꾸는 방법 (0) | 2017.08.16 |
Comments