쫄지말고 Diff 눌러보자!
'프로그램 사용 > Version Control' 카테고리의 다른 글
rabbitVCS - 리눅스용 svn client (0) | 2011.10.15 |
---|---|
git-svn 을 이용해서 svn 을 복제가능하다고? (0) | 2011.08.14 |
svn pam (0) | 2011.06.24 |
혼자서도 잘쓰는 tortoiseSVN (0) | 2011.06.20 |
SVN relocate / switch (0) | 2011.05.11 |
rabbitVCS - 리눅스용 svn client (0) | 2011.10.15 |
---|---|
git-svn 을 이용해서 svn 을 복제가능하다고? (0) | 2011.08.14 |
svn pam (0) | 2011.06.24 |
혼자서도 잘쓰는 tortoiseSVN (0) | 2011.06.20 |
SVN relocate / switch (0) | 2011.05.11 |
Step 9. 아직 파일은 없으니 단순하게 check out만 하고 폴더가 생긴다.
TortoiseSVN doc 비교 (0) | 2011.07.29 |
---|---|
svn pam (0) | 2011.06.24 |
SVN relocate / switch (0) | 2011.05.11 |
svnadmin dump / load를 이용한 저장소 합치기 (2) | 2011.05.09 |
SVN 저장소 합치기 - merging SVN repositories (0) | 2011.01.08 |
WinMerge | TortoiseMerge | |
Syntax Highlight | 지원 | 미지원 |
UTF-8 지원 | 지원 | 미지원 |
네비게이션 부분 확대 | 미지원 | 지원 |
svn 저장소의 위치 (0) | 2009.05.08 |
---|---|
CVS 에서 SVN으로 저장소 이전하기 (2) | 2009.04.09 |
CVS / SVN 차이점? (2) | 2009.03.06 |
SVN 사용기 (0) | 2009.03.05 |
windows에 SVN 서버 설치하기 (make a svn server on windows and connect using svn:// protocol) (6) | 2009.02.26 |
TortoiseSVN 내장 Diff 사용시 주의사항 및 프로그램 소개 (2) | 2009.03.10 |
---|---|
CVS / SVN 차이점? (2) | 2009.03.06 |
windows에 SVN 서버 설치하기 (make a svn server on windows and connect using svn:// protocol) (6) | 2009.02.26 |
TortoiseSVN 사용하기 (2) | 2009.02.26 |
TortoiseSVN - Svnserve Based Server (5) | 2009.02.26 |
SVN 사용기 (0) | 2009.03.05 |
---|---|
windows에 SVN 서버 설치하기 (make a svn server on windows and connect using svn:// protocol) (6) | 2009.02.26 |
TortoiseSVN - Svnserve Based Server (5) | 2009.02.26 |
cvs 서버 설치 / 복원 (2) | 2009.01.22 |
TortoiseCVS - CVS client for windows (0) | 2008.12.12 |
Running svnserveNow that svnserve is installed, you need it running on your server. The simplest approach is to run the following from a DOS shell or create a windows shortcut: svnserve.exe --daemon svnserve will now start waiting for incoming requests on port 3690. The --daemon switch tells svnserve to run as a daemon process, so it will always exist until it is manually terminated. If you have not yet created a repository, follow the instructions given with the Apache server setup the section called “Configuration”. To test that svnserve is working, use → to view a repository.
Assuming your repository is located in
svn://localhost/repos/TestRepo when prompted by the repo browser. You can also increase security and save time entering URLs with svnserve by using the --root switch to set the root location and restrict access to a specified directory on the server: svnserve.exe --daemon --root drive:\path\to\repository\root Using the previous test as a guide, svnserve would now run as: svnserve.exe --daemon --root c:\repos And in TortoiseSVN our repo-browser URL is now shortened to: svn://localhost/TestRepo Note that the --root switch is also needed if your repository is located on a different partition or drive than the location of svnserve on your server.
Svnserve will service any number of repositories. Just locate them somewhere
below the root folder you just defined, and access them using a URL relative
to that root.
Run svnserve as a ServiceRunning svnserve as a user is usually not the best way. It means always having a user logged in on your server, and remembering to restart it after a reboot. A better way is to run svnserve as a windows service. Starting with Subversion 1.4, svnserve can be installed as a native windows service. To install svnserve as a native windows service, execute the following command all on one line to create a service which is automatically started when windows starts. sc create svnserve binpath= "c:\svnserve\svnserve.exe --service If any of the paths include spaces, you have to use (escaped) quotes around the path, like this: sc create svnserve binpath= " You can also add a description after creating the service. This will show up in the Windows Services Manager. sc description svnserve "Subversion server (svnserve)"
Note the rather unusual command line format used by |
SVN 사용기 (0) | 2009.03.05 |
---|---|
windows에 SVN 서버 설치하기 (make a svn server on windows and connect using svn:// protocol) (6) | 2009.02.26 |
TortoiseSVN 사용하기 (2) | 2009.02.26 |
cvs 서버 설치 / 복원 (2) | 2009.01.22 |
TortoiseCVS - CVS client for windows (0) | 2008.12.12 |