쫄지말고 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 |
Setup PAM for authentication However, our SVN can be access by everyone, that is to say everyone can check out and commit, so we need to configure apache’s authentication for SVN. We plan to use PAM so that UNIX system user can access SVN use their username and password. First enable auth_pam and auth_sys_group modules for apache2: If we use shadow password in our system, we need to add www-data to the shadow group so that apache can read (not write!) the password of system user: Then edit our /etc/apache2/sites-available/ssl file and it should contain the following lines (the lines in red are newly added): Restart the apache and everyone in the src group can access SVN repository. [링크 : http://inming.net/?p=86] |
git-svn 을 이용해서 svn 을 복제가능하다고? (0) | 2011.08.14 |
---|---|
TortoiseSVN doc 비교 (0) | 2011.07.29 |
혼자서도 잘쓰는 tortoiseSVN (0) | 2011.06.20 |
SVN relocate / switch (0) | 2011.05.11 |
svnadmin dump / load를 이용한 저장소 합치기 (2) | 2011.05.09 |
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 |
svn pam (0) | 2011.06.24 |
---|---|
혼자서도 잘쓰는 tortoiseSVN (0) | 2011.06.20 |
svnadmin dump / load를 이용한 저장소 합치기 (2) | 2011.05.09 |
SVN 저장소 합치기 - merging SVN repositories (0) | 2011.01.08 |
svn export 2가지 방법 (2) | 2010.11.22 |
# svnadmin load --help
load: 사용법: svnadmin load REPOS_PATH
stdin 으로 'dumpfile' 형식의 스트림을 읽어들여, 새로운 리비젼을
저장소의 파일시스템으로 커밋합니다. 이전에 저장소가
비어있었다면, 기본적으로 그것의 UUID 가 스트림에 지정된
한가지로 변경될것입니다. 진행 피드백은 stdout 으로 전송됩니다.
옵션:
-q [--quiet] : stderr 에 대한 진행사항이 (오류에 한해서) 없습니다
--ignore-uuid : 스트림에 어떤 repos UUID가 발견되어도 무시합니다
--force-uuid : 만약 있다면, repos UUID 를 스트림에서 발견된 것에 설정합니다,
--use-pre-commit-hook : 리비전을 새로이 커밋하기 전 post-commit 훅을 호출합니다.
--use-post-commit-hook : 리비전을 새로이 커밋한 뒤 post-commit 훅을 호출합니다.
--parent-dir ARG : 저장소의 지정된 디렉토리에 로드합니다
# svnadmin dump --help
dump: 사용법: svnadmin dump REPOS_PATH [-r LOWER[:UPPER] [--incremental]]
파일 시스템의 내용을 stdout으로 포터블한 형식의 'dumpfile'로 출력하며,
stderr로 피드백을 보냅니다. 리비젼 LOWER부터 UPPER까지 출력합니다.
주어진 리비젼이 없다면, 모든 리비젼 트리를 적재합니다. LOWER만 주어졌다면,
LOWER 값에 해당하는 리비전만 출력합니다.
--incremental 옵션을 사용한다면, 출력되는 첫번째 리비전에는 해당
리비전에서 바뀐 경로에 대한 것만 기술될 것이며, 그렇지 않은 경우에는
해당 리비전에 존재하는 모든 경로가 출력됩니다.
(이 옵션의 사용여부에 상관없이 출력되는 두번째 이후의 리비전에는 해당
리비전에 바뀐 내용이 있다면, 그 경로의 내용만 출력됩니다)
옵션:
-r [--revision] ARG : 리비젼 넘버 ARG ( 또는 X:Y 범위 )를 지정합니다
--incremental : incremental 적재를 합니다.
--deltas : 적재된 결과물에 deltas를 사용합니다
-q [--quiet] : stderr 에 대한 진행사항이 (오류에 한해서) 없습니다
|
$ svnadmin dump repo1 > a1.d
$ svnadmin dump repo2 > a2.d
$ svnadmin create new
$ svn mkdir file:///.../new a1
$ svnadmin load new --parent-dir a1 < a1.d
$ svn mkdir file:///.../new a2
$ svnadmin load new --parent-dir a2 < a2.d [링크 : http://spyced.blogspot.com/2007/09/merging-two-subversion-repositories.html] |
혼자서도 잘쓰는 tortoiseSVN (0) | 2011.06.20 |
---|---|
SVN relocate / switch (0) | 2011.05.11 |
SVN 저장소 합치기 - merging SVN repositories (0) | 2011.01.08 |
svn export 2가지 방법 (2) | 2010.11.22 |
svn export 와 checkout의 차이점 (0) | 2010.11.18 |
SVN relocate / switch (0) | 2011.05.11 |
---|---|
svnadmin dump / load를 이용한 저장소 합치기 (2) | 2011.05.09 |
svn export 2가지 방법 (2) | 2010.11.22 |
svn export 와 checkout의 차이점 (0) | 2010.11.18 |
svn blame (4) | 2010.11.18 |
svnadmin dump / load를 이용한 저장소 합치기 (2) | 2011.05.09 |
---|---|
SVN 저장소 합치기 - merging SVN repositories (0) | 2011.01.08 |
svn export 와 checkout의 차이점 (0) | 2010.11.18 |
svn blame (4) | 2010.11.18 |
apache2 리눅스 계정으로 인증하기(PAM) (0) | 2010.11.11 |
SVN 저장소 합치기 - merging SVN repositories (0) | 2011.01.08 |
---|---|
svn export 2가지 방법 (2) | 2010.11.22 |
svn blame (4) | 2010.11.18 |
apache2 리눅스 계정으로 인증하기(PAM) (0) | 2010.11.11 |
Apache + SVN on Ubuntu 10.04 (0) | 2010.11.03 |
$ svn help blame blame (praise, annotate, ann): 지정한 파일이나 URL의 내용의 수정내역을 각 라인별로 리비전과 작성자를 보여줍니다. 사용법: blame TARGET[@REV]... REV가 지정되면, 지정된 REV에서부터 찾아 보여줍니다. |
svn export 2가지 방법 (2) | 2010.11.22 |
---|---|
svn export 와 checkout의 차이점 (0) | 2010.11.18 |
apache2 리눅스 계정으로 인증하기(PAM) (0) | 2010.11.11 |
Apache + SVN on Ubuntu 10.04 (0) | 2010.11.03 |
visualSVN (0) | 2010.09.09 |
<Location /svn/repos1> DAV svn SVNPath /home/svn/repos1 AuthPAM_Enabled on AuthType Basic AuthName "Subversion Repository" AuthUserFile /etc/shadow Require group www-data Require valid-user </Location> |
svn export 와 checkout의 차이점 (0) | 2010.11.18 |
---|---|
svn blame (4) | 2010.11.18 |
Apache + SVN on Ubuntu 10.04 (0) | 2010.11.03 |
visualSVN (0) | 2010.09.09 |
TortoiseSVN tag/branch = copy (2) | 2010.04.30 |