SVN 상용 명령 의 checkout
6147 단어 SVN
svn co http: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] --username 사용자 이름 -- password 비밀번호
svn co svn: / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] --username 사용자 이름 -- password 비밀번호
svn checkout http: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] -- username 사용자 이름
svn checkout svn: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] --사용자 이름
주: -- password 매개 변 수 를 가지 고 비밀 번 호 를 전송 하지 않 으 면 비밀 번 호 를 입력 하 는 것 을 알려 줍 니 다. 명문 -- password 옵션 을 사용 하지 않 는 것 을 권장 합 니 다.
그 중에서 username 과 password 앞 은 두 개의 짧 은 선 이지 하나 가 아 닙 니 다.
로 컬 디 렉 터 리 의 전체 경 로 를 지정 하지 않 으 면 현재 디 렉 터 리 에서 검출 됩 니 다.
예:
svn co svn://192.168.0.3/테스트 도구 / home / testtools -- username luke
svn co http://192.168.0.3/test/testapp --username luke
svn checkout svn://192.168.0.3/테스트 도구 / home / testtools -- username luke
svn checkout http://192.168.0.3/test/testapp --username luke
자신 이 실험 한 코드 표시:
svn checkout http://XXXX/cxb/weijifen/code/trunk/web/XXX /home/cxb/src/XXX
svn checkout http://XXXXX/cxb/weijifen/code/trunk/web/trunk . /home/cxb/src/XXX
지정 한 버 전 을 찾 습 니 다:
svn co http: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] [-- revision] --username 사용자 이름 -- password 비밀번호
svn checkout svn: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] [-- revision] --사용자 이름
svn co [--revision] http: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] -- username 사용자 이름 -- password 비밀번호
svn checkout [--revision] svn: / / 경로 (디 렉 터 리 나 파일 의 전체 경로) [로 컬 디 렉 터 리 전체 경로] -- username 사용자 이름
svn checkout http://siphon.googlecode.com/svn/trunk/ siphon -r r791
svn checkout -r r791 http://siphon.googlecode.com/svn/trunk/ siphon
원본 폴 더 루트 디 렉 터 리 를 포함 하지 않 음:
예 를 들 어 저 는 checkout. trunk / 아래 의 모든 파일 이지 만 trunk 폴 더 는 포함 되 지 않 습 니 다.
우 리 는 svn 폴 더 뒤에 빈 칸 을 두 고 "..." 를 추가 하면 됩 니 다.
svn co http://192.168.1.10/svn/project/trunk/ /home/DSP-OPEN
svn cohttp://192.168.1.10/svn/project/trunk/ . / home / DSP - OPEN checkout 매개 변수 에 사용 할 명령 더 보기: svn help checkout [root@ltegr ~]# svn help checkout checkout (co): Check out a working copy from a repository. usage: checkout URL[@REV]... [PATH] If specified, REV determines in which revision the URL is first looked up. If PATH is omitted, the basename of the URL will be used as the destination. If multiple URLs are given each will be checked out into a sub-directory of PATH, with the name of the sub-directory being the basename of the URL. If --force is used, unversioned obstructing paths in the working copy destination do not automatically cause the check out to fail. If the obstructing path is the same type (file or directory) as the corresponding path in the repository it becomes versioned but its contents are left 'as-is' in the working copy. This means that an obstructing directory's unversioned children may also obstruct and become versioned. For files, any content differences between the obstruction and the repository are treated like a local modification to the working copy. All properties from the repository are applied to the obstructing path. See also 'svn help update' for a list of possible characters reporting the action taken. Valid options: -r [--revision] ARG : ARG (some commands also take ARG1:ARG2 range) A revision argument can be one of: NUMBER revision number '{' DATE '}' revision at start of the date 'HEAD' latest in repository 'BASE' base rev of item's working copy 'COMMITTED' last commit at or before BASE 'PREV' revision just before COMMITTED -q [--quiet] : print nothing, or only summary information -N [--non-recursive] : obsolete; try --depth=files or --depth=immediates --depth ARG : limit operation by depth ARG ('empty', 'files', 'immediates', or 'infinity') --force : force operation to run --ignore-externals : ignore externals definitions Global options: --username ARG : specify a username ARG --password ARG : specify a password ARG --no-auth-cache : do not cache authentication tokens --non-interactive : do no interactive prompting --trust-server-cert : accept unknown SSL server certificates without prompting (but only with '--non-interactive') --config-dir ARG : read user configuration files from directory ARG --config-option ARG : set user configuration option in the format: FILE:SECTION:OPTION=[VALUE] For example:
servers:global:http-library=serf
지식 확장: 1. check out 은 check in 과 대응 하고 export 는 import 와 대응 합 니 다.check out 에서 파일 을 내 보 낸 후에 도 내 보 낸 파일 은 SVN 버 전 관리 에 있 습 니 다. 버 전 라 이브 러 리 와 연결 되 어 있 습 니 다. 예 를 들 어 Svn Update 나 Svn Commit 작업 을 할 수 있 습 니 다.폴 더 다음 에 있 는. svn 의 숨겨 진 폴 더 를 내 보 내 고 일부 버 전의 메타 데이터 정 보 를 저장 합 니 다.export 는 한 버 전의 데 이 터 를 간단하게 내 보 냅 니 다. 내 보 낸 파일 은 SVN 버 전 관리 에서 벗 어 나 업데이트 와 Commit 작업 을 하지 않 습 니 다.폴 더 내 보 내기 에. svn 디 렉 터 리 가 없습니다.
주: -- password 매개 변 수 를 가지 고 비밀 번 호 를 전송 하지 않 으 면 비밀 번 호 를 입력 하 는 것 을 알려 줍 니 다. 명문 -- password 옵션 을 사용 하지 않 는 것 을 권장 합 니 다.
그 중에서 username 과 password 앞 은 두 개의 짧 은 선 이지 하나 가 아 닙 니 다.
로 컬 디 렉 터 리 의 전체 경 로 를 지정 하지 않 으 면 현재 디 렉 터 리 에서 검출 됩 니 다.
예:
svn co svn://192.168.0.3/테스트 도구 / home / testtools -- username luke
svn co http://192.168.0.3/test/testapp --username luke
svn checkout svn://192.168.0.3/테스트 도구 / home / testtools -- username luke
svn checkout http://192.168.0.3/test/testapp --username luke
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
svn 팁1. SVN 서버 IP 교체 2.특정 버전 가져오기 3.한 버전의 파일을 업데이트합니다. * svn: E155036: Working copy is too old (format 10, created by Subvers...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.