Tech-tree for Riemannian Geometry

Etc 2010. 7. 29. 21:39

Differential Geometry (MAS520) Spring

Differential Forms and Applications, Manfredo P. do Carmo, Springer-Verlag, 1994.


http://ocw.mit.edu/courses/mathematics/18-950-differential-geometry-fall-2008

Kuhnel, Wolfgang. Differential Geometry: Curves – Surfaces – Manifolds. Student mathematical library, vol. 16. Providence, RI: American Mathematical Society, 2002. ISBN: 9780821826560.


Riemannian Geometry (MAS621)Spring

Riemannian Geometry: Manfredo P. Do Carmo

:

SVN 사용법 고급

카테고리 없음 2010. 6. 28. 12:39

SVN(subversion) 사용법 : 고급(Advanced)

Contents:

  1. SVN(subversion) 사용법 : 고급(Advanced)
    1. 브랜치(가지) 구성하기
    2. 참고 문헌

브랜치(가지) 구성하기

  • 브랜치(가지)를 구성하는 목적은 크게 두 가지이다.
    • 특 정 시점의 snapshot을 만들기 위한 것이다. svn은 cvs와는 다르게 따로 tag를 붙일 수 있는 방법을 가지고 있지 않다. 리비전 번호가 전체적으로 적용되는 것도 아니어서 특정 시점의 상태를 기억해둘 필요가 있을 때에는 /tags/REL-1.0.0 과 같이 태그 디렉토리를 만든다.
    • 개발의 기본 가지(줄기, trunk)에서 따로 분리된 개발을 진행하고자 할 때이다. 말 그대로 브랜치(branch)를 만들기 위해서다. /branches/RB-1.0 과 같이 브랜치 디렉토리를 복사해서 만든다.
  • 태그 브랜치를 만드는 예
    work> svn copy -m "Tag release 1.0.0" \
          http://svn_server.com/svn_repo/project_name/trunk \
          http://svn_server.com/svn_repo/project_name/tags/REL-1.0.0
    
    
  • 브랜치와 꼬리표(tag) 명명 관례
이름 붙일 대상 이름 스타일
릴리스 가지 (Release Branch) RB-릴리스번호 RB-1.0
RB-1.0.1a
릴리스 (Release) REL-릴리스번호 REL-1.0
REL-1.0.1a
버그 교정 가지 (Bug Fix Branch) BUG-추적번호 BUG-3035
BUG-10871
버그 교정 이전 (Bug Fix Pre) PRE-추적번호 PRE-3035
PRE-10871
버그 교정 이후 (Bug Fix Post) POST-추적번호 POST-3035
POST-10871
개발자 실험 (Try) TRY-약자-설명 TRY-MGM-cache-pages
TRY-MR-neo-persistence
  • 추 적번호: tracking number : Trac과 같은 버그 추적 시스템에서 부여된 버그 추적 번호

참고 문헌

http://blog.naver.com/joycestudy?Redirect=Log&logNo=100097622001

:

Makefiles on Xcode

카테고리 없음 2010. 6. 25. 15:04
: