한 저장소 안에 프로젝트별로 관리하는 경우에는 리비전 넘버는 저장소 기준으로 증가하므로
프로젝트 별로 리비전 넘버가 띄엄띄엄 올라가게 된다. (바꿔말하면 굳이 리비전 넘버에는 신경을 안 써도 될듯)
다만 조금이라도 연관성이 있다던가 코드의 일부라도 공유할 가능성이 있다면 한 저장소 안에 프로젝트별로 해도 되나,,,
전혀 상관없는 프로젝트라면 차라리 저장소를 따로 만들어서 관리하는게 더 나을듯함

http://subversion.apache.org/faq.html#multi-proj

How do I manage several different projects under Subversion?

It depends upon the projects involved. If the projects are related, and are likely to share data, then it's best to create one repository with several subdirectories like this:

	$ svnadmin create /repo/svn
	$ svn mkdir file:///repo/svn/projA
	$ svn mkdir file:///repo/svn/projB
	$ svn mkdir file:///repo/svn/projC

If the projects are completely unrelated, and not likely to share data between them, then it's probably best to create separate and unrelated repositories.

	$ mkdir /repo/svn
	$ svnadmin create /repo/svn/projA
	$ svnadmin create /repo/svn/projB
	$ svnadmin create /repo/svn/projC

The difference between these two approaches is this (as explained by Ben Collins-Sussman <sussman@collab.net>):

  • In the first case, code can easily be copied or moved around between projects, and the history is preserved. ('svn cp/mv' currently only works within a single repository.)
  • Because revision numbers are repository-wide, a commit to any project in the first case causes a global revision bump. So it might seem a bit odd if somebody has 'projB' checked out, notices that 10 revisions have happened, but projB hasn't changed at all. Not a big deal, really. Just a little weird at first. This used to happen to svn everytime people committed to rapidsvn, when rapidsvn was in the same repository. :-)
  • The second case might be easier to secure; it's easier to insulate projects from each other (in terms of users and permissions) using Apache's access control. In the 1st case, you'll need a fancy hook script in the repository that distinguishes projects ("is this user allowed to commit to this particular subdir?") Of course, we already have such a script, ready for you to use.

by sminchoi 2011. 1. 26. 16:48
아웃룩 2007 에서 가끔 애용하는 팁을 알려드리자면,

아웃룩 창에서 Ctrl + Alt + F11 을 누르면
"확장입력기" 라는 녀석이 튀어 나옵니다.
(필기 인식 이라고 되어 있는 놈인데...)

그렇다면 이 녀석을 어떤 용도로 사용하는냐? 하면
그렇습니다..  눈치빠른 분들은 벌써 눈치채셨겠지만...

한자 사전으로 사용하고 있습니다 -_-;;;

입력창에 마우스로 원하는 한자를 그려넣으면
오른쪽 창에 비슷한 글자들이 자동으로 뜹니다.

결국, 한자의 음을 모르는 경우에
옥편에서 획수로 찾는 것보다 훨씬 빠르게 찾기가 가능합니다 ㅋㅋㅋ

참고로, Ctrl + Alt + F10을 누르면
키보드 모양의 녀석이 나와서 입력기로 사용이 가능합니다만.,,
글쎄요... 이녀석은 활용도가 많이 떨어지네요 ㅎㅎ
by sminchoi 2008. 7. 29. 21:08
| 1 |