문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
wiki:3party:scm:svn [2020/05/19 16:06] dhan |
wiki:3party:scm:svn [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 8: | 줄 8: | ||
<WRAP clear/> | <WRAP clear/> | ||
+ | [[wiki: | ||
+ | |||
+ | ===== Linux 사용법 ===== | ||
+ | export (Release 버전 가져오기) | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn export svn:// | ||
+ | [dev@developer ~] svn export svn:// | ||
+ | [dev@developer ~] svn export / | ||
+ | </ | ||
+ | > 마지막 매개변수에서 디렉토리를 지정할 수 있다. 없으면 RSA-Linux-4.5 | ||
+ | > Local Repository에서도 잘 됨. ^^ | ||
+ | \\ | ||
+ | checkout (Repository 가져오기) | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn co svn:// | ||
+ | [dev@developer ~] svn co svn:// | ||
+ | </ | ||
+ | > checkout로 해도 된다. | ||
+ | > 마지막 매개변수에서 디렉토리를 지정할 수 있다. 없으면 RSA-Linux-4.5 | ||
+ | |||
+ | \\ | ||
+ | add (Repository에 추가 예약^^) | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn add ./* | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | delete (Repository에 삭제 예약^^) | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn del ./* | ||
+ | </ | ||
+ | > 파일이나 폴더 상관 없다. | ||
+ | > 수정은 예약하지 않고 바로 commit | ||
+ | |||
+ | \\ | ||
+ | commit (Repository에 추가) | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn commit -m '' | ||
+ | </ | ||
+ | > 예약된 내용이 실제 적용됨 | ||
+ | > 커밋시에는 반드시 메시지를 입력해야 한다. | ||
+ | |||
+ | \\ | ||
+ | svn update | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn update | ||
+ | </ | ||
+ | > checkout한 곳에서 하자. export한 곳에서는 안된다. | ||
+ | \\ | ||
+ | [[https:// | ||
+ | \\ | ||
+ | Find files that are not under version control | ||
+ | <code bash> | ||
+ | [dev@developer ~] svn status |grep ^\?|awk ' | ||
+ | </ | ||
===== Tip ===== | ===== Tip ===== | ||
===== Troubleshooting ===== | ===== Troubleshooting ===== | ||
+ | CentOS6 checkout 에러 | ||
+ | Store password unencrypted (yes/no) 에서 yes를 눌렸는데도 무한 반복되는 현상 | ||
+ | < | ||
+ | $> vi ${USER_HOME}/ | ||
+ | store-passwords = yes | ||
+ | store-plaintext-passwords = yes | ||
+ | </ | ||
+ | > 주석 해제 및 value를 yes로 수정한 후 저장, 다시 checkout하면 됨 | ||
+ | [[https:// | ||
+ | \\ | ||
===== Ref ===== | ===== Ref ===== | ||
[[https:// | [[https:// | ||
{{tag> | {{tag> |