Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 실행권한
- kitura
- STF_PortForwarding
- ssh
- appium server
- Jupyter Notebook
- centos
- ubuntu
- perfect
- Jupyter
- postgres
- ftp
- create table
- Materials
- appium
- postgresql
- port forwarding
- sshpass
- openpyxl
- SWIFT
- PYTHON
- nGrinder
- 28015
- nmap
- rethinkdb
- nohup
- insert
- STF
- GoCD
- mysql
Archives
- Today
- Total
don't stop believing
svn checkout 하고 update 하기 본문
Mac에서 svn 클라이언트 앱을 설치해 사용하기 귀찮아 svn command를 사용한다.
먼저 svn이 설치되어 있는지 확인해 보자.
123$ svn --versionsvn, version 1.9.4 (r1740329)compiled Oct 11 2017, 15:23:17 on x86_64-apple-darwin16.1.0
1.9.4 버전이 설치되어 있다고 나옵니다.
svn 명령이 어떤것이 있는지 확인하려면 svn help를 하면 됩니다.
특정 명령에 대한 옵션이나 사용법을 확인하려면 svn <명령어> help를 하면 됩니다. checkout에 대한 옵션을 확인하고 싶다면 svn checkout help를 하면 됩니다.
12$ svn help$ svn checkout help
svn이 설치되어 있는걸 확이했으니 checkout으로 repository의 데이터들을 받아 봅시다.
checkout할때 username과 password를 함께 확인하는 명령은 아래와 같습니다.
1$ svn checkout --username tongchun --password 1234 svn://192.168.0.188/nglerepo
svn repogitory에 새로 올라온 파일이 있다면 update로 받아봅시다.
update는 해당 repogitory 폴더에서 실행해야 합니다.
1$ svn update
'Tools > SVN' 카테고리의 다른 글
svn에 새 파일 추가하고 commit 하기 (0) | 2018.01.02 |
---|---|
svn delete command (0) | 2017.12.18 |
[Subversion] Ubuntu에 svn 설치하기 (1) | 2017.09.06 |