## 유용한 SVN 부가 명령어들 ##
1. svn help
[PMU][ ~/project/apn/packages/wbp-2.0.0 ]
(11:47:34 AM) $ svn --help
usage: svn <subcommand> [options] [args]
Subversion command-line client, version 1.6.18.
Type 'svn help <subcommand>' for help on a specific subcommand.
Type 'svn --version' to see the program version and RA modules
or 'svn --version --quiet' to see just the version number.
Most subcommands take file and/or directory arguments, recursing
on the directories. If no arguments are supplied to such a
command, it recurses on the current directory (inclusive) by default.
Available subcommands:
add
blame (praise, annotate, ann)
cat
changelist (cl)
checkout (co)
cleanup
commit (ci)
copy (cp)
delete (del, remove, rm)
diff (di)
export
help (?, h)
import
info
list (ls)
lock
log
merge
mergeinfo
mkdir
move (mv, rename, ren)
propdel (pdel, pd)
propedit (pedit, pe)
propget (pget, pg)
proplist (plist, pl)
propset (pset, ps)
resolve
resolved
revert
status (stat, st)
switch (sw)
unlock
update (up)
Subversion is a tool for version control.
For additional information, see http://subversion.apache.org/
2. Diff(di)
svn diff <file>
svn diff -r <rivision number> <file>
svn diff -r <rivision number>:<revision number> <file>
3. blame
- 행별로 수정한 사용자를 보여줌
svn blame <file>
4. rename
파일, 디렉토리의 이름 수정
svn rename <file1> <file2>
to be continued...
'IT Tech > Programming' 카테고리의 다른 글
블로그 카테고리 썸네일 이미지로 보기(masonry?) 적용과 문제점 (0) | 2019.01.26 |
---|---|
[C언어] Linux Pthread & Signal, Itimer 간단 예제와 의문!! (0) | 2013.10.24 |
[C언어] simple hash table - test code (0) | 2012.11.13 |
[C언어] c/c++ gcc 디버깅을 위한 gdb 초간단 사용팁 (0) | 2012.03.10 |
[C언어] Fast Integer ID Pool 관리 - 할당/반환 함수 (0) | 2011.12.19 |
[C언어] uint2bin (0) | 2011.09.07 |
[Lex&Yacc] Yacc 명령 그리고 Debugging!! (0) | 2011.04.19 |
[C언어] IP 관련 매크로(Macro) (0) | 2011.04.14 |
[regex] 정규표현식 테스트 프로그램 - The Regex Coach (0) | 2011.04.13 |
[C언어] parse Mac Address (0) | 2011.04.08 |